removing extra non const versions of save

This commit is contained in:
Shane Grant
2013-06-14 13:35:32 -07:00
parent 9225d1c741
commit 50ab9ea53f
3 changed files with 1 additions and 21 deletions

View File

@@ -205,15 +205,5 @@ int main()
std::cout << std::endl;
}
std::ofstream os("test.txt");
cereal::BinaryOutputArchive archive(os);
std::cout << "Testing:" << std::endl;
archive & uint8_t();
archive & uint16_t(3);
//os.write("\0", 1);
return 0;
}