Skip to content

Commit

Permalink
Fix Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
miloyip committed Feb 13, 2018
1 parent 59181a0 commit 4956227
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/archiver/archivertest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ void test2() {
Group g;
g.groupName = "Rainbow";

Student s1 = { "Lua", 9, 150.5, true };
Student s2 = { "Mio", 7, 120.0, false };
Student s1("Lua", 9, 150.5, true);
Student s2("Mio", 7, 120.0, false);
g.students.push_back(s1);
g.students.push_back(s2);

Expand Down

0 comments on commit 4956227

Please sign in to comment.