Skip to content

Commit 4956227

Browse files
committed
Fix Windows build
1 parent 59181a0 commit 4956227

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example/archiver/archivertest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ void test2() {
9898
Group g;
9999
g.groupName = "Rainbow";
100100

101-
Student s1 = { "Lua", 9, 150.5, true };
102-
Student s2 = { "Mio", 7, 120.0, false };
101+
Student s1("Lua", 9, 150.5, true);
102+
Student s2("Mio", 7, 120.0, false);
103103
g.students.push_back(s1);
104104
g.students.push_back(s2);
105105

0 commit comments

Comments
 (0)