Update 03-Style.md

This commit is contained in:
Alec Breton
2023-07-25 15:10:44 -04:00
committed by GitHub
parent 63294d082d
commit 6b84e8dd7b

View File

@@ -35,7 +35,7 @@ Every IDE and many editors have support for clang-format built in or easily inst
C++ Standard Library (and other well-known C++ libraries like [Boost](http://www.boost.org/)) use these guidelines:
* Macro names use upper case with underscores: `INT_MAX`.
* Template parameter names use camel case: `InputIterator`.
* Template parameter names use Pascal case: `InputIterator`.
* All other names use snake case: `unordered_map`.
## Distinguish Private Object Data