We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7e05b6 commit 47b2b1fCopy full SHA for 47b2b1f
doc/procedure/cpp_code.txt
@@ -424,6 +424,7 @@ Naming conventions:
424
Casing styles:
425
- class/struct/enum: PascalCase
426
- Math primitives can be in lowercase: vector2f, angle3f, matrix44f
427
+ - Using declarations of primitive types can be in lowercase: uint, int16, uint64
428
- Functions: PascalCase
429
- Public and protected fields: PascalCase
430
- Math primitives can use lowercase: vector2f.x, angle3f.yaw, matrix44f.m03
@@ -812,7 +813,7 @@ code fragments, put a comment line.
812
813
814
if (storage.size() == 0)
815
Log("! ERROR: No items found");
- GOOD
816
+ GOOD
817
for (auto& item : items)
818
storage.push_back(item);
819
// check if there's no items
0 commit comments