comment out serialize.cc example in CMakeLists as it requires Cereal.

This commit is contained in:
greg
2019-07-27 15:13:53 -04:00
parent 20bcc22b70
commit 9c6baa6c1c
2 changed files with 1 additions and 6 deletions
-5
View File
@@ -51,11 +51,6 @@ int main()
// -----------------------
showtime("serialize", [&table]() {
ofstream os("z:\out.cereal", ios::binary);
#if 0
const unsigned int length = 8192;
char buffer[length];
os.rdbuf()->pubsetbuf(buffer, length);
#endif
cereal::BinaryOutputArchive archive(os);
archive(table.size());
archive(table);