Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Don't use the{{using namespace ...}} or using ... constructs in a header file. It might save you some typing but it also forces the namespaces you use onto every `.cpp` cpp file that directly or indirectly includes your headers. That could create name clashes with names in some other namespace that the author of the .cpp file wants to use. Use fully qualified names, painful as it might be.

...