Skip to content

Files

Latest commit

 

History

History
12 lines (6 loc) · 416 Bytes

build-namespaces_literals.md

File metadata and controls

12 lines (6 loc) · 416 Bytes

Pattern: Use of namespace using-directive

Issue: -

Description

With few exceptions, place code in a namespace. Namespaces should have unique names based on the project name, and possibly its path. Do not use using-directives (e.g. using namespace foo). Do not use inline namespaces.

Further Reading