Lines Matching defs:Issues
552 Treat Compiler Warnings Like Errors
587 Write Portable Code
599 Do not use RTTI or Exceptions
617 Do not use Static Constructors
652 Use of ``class`` and ``struct`` Keywords
695 Do not use Braced Initializer Lists to Call a Constructor
733 Use ``auto`` Type Deduction to Make Code More Readable
744 Beware unnecessary copies with ``auto``
773 A Public Header File **is** a Module
797 ``#include`` as Little as Possible
820 Keep "Internal" Headers Private
839 Use Early Exits and ``continue`` to Simplify Code
934 Don't use ``else`` after a ``return``
1004 Turn Predicate Loops into Predicate Functions
1057 Name Types, Functions, Variables, and Enumerators Properly
1128 Assert Liberally
1214 Do Not Use ``using namespace std``
1245 Provide a Virtual Method Anchor for Classes in Headers
1254 Don't use default labels in fully covered switches over enumerations
1272 Use ``LLVM_DELETED_FUNCTION`` to mark uncallable methods
1300 Don't evaluate ``end()`` every time through a loop
1352 ``#include <iostream>`` is Forbidden
1371 Use ``raw_ostream``
1384 Avoid ``std::endl``
1399 Don't use ``inline`` when defining a function in a class definition