Changes between Version 9 and Version 10 of code/C++_styleguide
- Timestamp:
- Nov 5, 2007, 3:52:08 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/C++_styleguide
v9 v10 18 18 19 19 === Namespaces === 20 Create a directory for every namespace (== create a directory for every modules and all its submodules). 20 Create a directory for every namespace (== create a directory for every modules and all its submodules). Names representing namespaces should be all lowercase.[[br]] 21 Don't write "using namespace ..;" in header files because otherwise if someone included that header file, the "using namespace .." would automatically be included as well. That may lead to unwanted errors. 21 22 22 23 === Inlineing and Templates ===