mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 12:44:42 +03:00
Changed { { hack to proper liquid template fix
This commit is contained in:
@@ -4416,7 +4416,7 @@ A class with members that all have default constructors implicitly gets a defaul
|
|||||||
vector v;
|
vector v;
|
||||||
};
|
};
|
||||||
|
|
||||||
X x; // means X{ {}, {} }; that is the empty string and the empty vector
|
X x; // means X{{}, {}}; that is the empty string and the empty vector
|
||||||
|
|
||||||
Beware that built-in types are not properly default constructed:
|
Beware that built-in types are not properly default constructed:
|
||||||
|
|
||||||
@@ -6416,7 +6416,7 @@ Subscripting the resulting base pointer will lead to invalid object access and p
|
|||||||
|
|
||||||
void use(B*);
|
void use(B*);
|
||||||
|
|
||||||
D a[] = { {1, 2}, {3, 4}, {5, 6} };
|
D a[] = {{1, 2}, {3, 4}, {5, 6}};
|
||||||
B* p = a; // bad: a decays to &a[0] which is converted to a B*
|
B* p = a; // bad: a decays to &a[0] which is converted to a B*
|
||||||
p[1].x = 7; // overwrite D[0].y
|
p[1].x = 7; // overwrite D[0].y
|
||||||
|
|
||||||
@@ -10419,7 +10419,7 @@ To make error handling systematic, robust, and non-repetitive.
|
|||||||
|
|
||||||
void use()
|
void use()
|
||||||
{
|
{
|
||||||
Foo bar { {Thing{1}, Thing{2}, Thing{monkey}}, {"my_file", "r"}, "Here we go!"};
|
Foo bar {{Thing{1}, Thing{2}, Thing{monkey}}, {"my_file", "r"}, "Here we go!"};
|
||||||
// ...
|
// ...
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user