Fix Windows build

This commit is contained in:
Milo Yip 2018-02-13 15:08:20 +08:00
parent 59181a052f
commit 49562271be
1 changed files with 2 additions and 2 deletions

View File

@ -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);