Skip to content

Commit

Permalink
Fixes related to changes for #64
Browse files Browse the repository at this point in the history
  • Loading branch information
AzothAmmo committed Mar 14, 2014
1 parent c8b6e24 commit 8acd3dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sandbox/sandbox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ int main()
int xxx[] = {-1, 95, 3};
archive( xxx );

cereal::XMLOutputArchive archive2(std::cout, 10);
cereal::XMLOutputArchive archive2(std::cout);
archive2( xxx );

std::vector<int> yyy = {1, 2, 3};
Expand Down
2 changes: 1 addition & 1 deletion sandbox/sandbox_json.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ int main()

{
std::ofstream os("file.json");
cereal::JSONOutputArchive oar( os, 5 );
cereal::JSONOutputArchive oar( os );

//auto f = std::make_shared<Fixture>();
//auto f2 = f;
Expand Down

0 comments on commit 8acd3dc

Please sign in to comment.