There was an error while loading. Please reload this page.
1 parent 7e68f7e commit 7f79f38Copy full SHA for 7f79f38
03-Style.md
@@ -14,7 +14,11 @@ are common examples. snake_case has the advantage that it can also work with spe
14
* functions and variables start with lower case: `myMethod`
15
* constants are all capital: `const int PI=3.14159265358979323;`
16
17
-*Note that the C++ standard does not follow any of these guidelines. Everything in the standard is lowercase only.*
+C++ Standard Library (and other well known C++ libraries like boost) use these guidelines:
18
+
19
+ * Macro names use uppercase with underscores: INT_MAX
20
+ * Template parameter names use camel case: InputIterator
21
+ * All other names use snake case: unordered_map
22
23
## Distinguish Private Object Data
24
0 commit comments