Interpretation of Google C++ Style Guide Series Part 2 (Scope)

Link to Previous Issue:Interpretation of Google C++ Style Guide Series Part 1 (Header Files) 2.1 Namespaces Except for a few special cases, code should be placed within a namespace, which should have a unique name that includes the project name and may optionally include the file path. The use of <span>using namespace foo</span> is prohibited, … Read more