Skip to content

Commit

Permalink
* Update to cluon v0.0.59
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Berger <[email protected]>
  • Loading branch information
chrberger committed Apr 1, 2018
1 parent 824a415 commit 01d81aa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN apk update && \
g++
ADD . /opt/sources
WORKDIR /opt/sources
RUN ln -sf cluon-complete-v0.0.58.hpp cluon-complete.cpp && \
RUN ln -sf cluon-complete-v0.0.59.hpp cluon-complete.cpp && \
g++ -std=c++14 -Wall -D HAVE_CLUON_LIVEFEED -pthread -s -static -static-libgcc -static-libstdc++ -o /tmp/cluon-livefeed cluon-complete.cpp

RUN [ "cross-build-end" ]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.amd64
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN apk update && \
g++
ADD . /opt/sources
WORKDIR /opt/sources
RUN ln -sf cluon-complete-v0.0.58.hpp cluon-complete.cpp && \
RUN ln -sf cluon-complete-v0.0.59.hpp cluon-complete.cpp && \
g++ -std=c++14 -Wall -D HAVE_CLUON_LIVEFEED -pthread -s -static -static-libgcc -static-libstdc++ -o /tmp/cluon-livefeed cluon-complete.cpp


Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.armhf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN apk update && \
g++
ADD . /opt/sources
WORKDIR /opt/sources
RUN ln -sf cluon-complete-v0.0.58.hpp cluon-complete.cpp && \
RUN ln -sf cluon-complete-v0.0.59.hpp cluon-complete.cpp && \
g++ -std=c++14 -Wall -D HAVE_CLUON_LIVEFEED -pthread -s -static -static-libgcc -static-libstdc++ -o /tmp/cluon-livefeed cluon-complete.cpp

RUN [ "cross-build-end" ]
Expand Down
6 changes: 3 additions & 3 deletions cluon-complete-v0.0.58.hpp → cluon-complete-v0.0.59.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This is an auto-generated header-only single-file distribution of libcluon.
// Date: Sun, 01 Apr 2018 15:22:27 +0200
// Version: 0.0.58
// Date: Sun, 01 Apr 2018 15:58:07 +0200
// Version: 0.0.59
//
//
// Implementation of N4562 std::experimental::any (merged into C++17) for C++11 compilers.
Expand Down Expand Up @@ -13242,7 +13242,7 @@ int main(int argc, char **argv) {

cluon::MessageParser mp;
auto parsingResult = mp.parse(s);
if (cluon::MessageParser::MessageParserErrorCodes::NO_ERROR == parsingResult.second) {
if (!parsingResult.first.empty()) {
for (const auto &mm : parsingResult.first) { scopeOfMetaMessages[mm.messageIdentifier()] = mm; }
std::clog << "Parsed " << parsingResult.first.size() << " message(s)." << std::endl;
}
Expand Down

0 comments on commit 01d81aa

Please sign in to comment.