Next: 8.3 Language Restrictions  Up: 8 Declarations and Definitions  Previous: 8.1 Structure  Contents

8.2 Scope

8.2.1

High Integrity CPP Rule

Do not hide declarations in other scopes.

8.2.2

High Integrity CPP Rule

Avoid global variables.

8.2.3

High Integrity CPP Guideline

Always use using declarations or write explicit namespace qualifiers. Do not use using directives.

8.2.4

High Integrity CPP Guideline

Only have using namespace directives in the main source file, after all include directives.


HICPP VERSION 2.4  http://www.codingstandard.com   Copyright: © 2007 THE PROGRAMMING RESEARCH GROUP