mirror of
https://github.com/Tencent/rapidjson.git
synced 2025-03-06 04:55:50 +01:00
Fix Windows build
This commit is contained in:
parent
59181a052f
commit
49562271be
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user