We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30386f3 commit 731bb96Copy full SHA for 731bb96
src/portable_archive/portable_oarchive.hpp
@@ -53,7 +53,7 @@ class portable_oarchive : public portable_oprimitive
53
// to be parsed with a newer version of lslboost::serialization
54
// therefor we create a header, no header means lslboost 1.33
55
if (flags & lslboost::archive::no_header)
56
- BOOST_ASSERT(archive_version == 3);
+ assert(archive_version == 3);
57
else {
58
// write our minimalistic header (magic byte plus version)
59
// the lslboost archives write a string instead - by calling
src/portable_archive/slimarchive.hpp
@@ -2,6 +2,7 @@
2
3
/// Small shim implementing the needed Boost serialization classes for liblsl
4
5
+#include <cassert>
6
#include <cstdint>
7
#include <stdexcept>
8
#include <streambuf>
0 commit comments