Abraxas/ECS C++ Home  Table of Contents 

Module - 175.html

ABRAXAS SOFTWARE - CodeCheck ECS C++ Test-Suite ECS C++.

ECS C++-C Test Suite for Module - 175.cpp

// 175. Do not put global-scope using or using namespace declarations in a header file.

namespace stdfoo {
 int noop;
}

// GOOD 175, using ok in c++ file

using stdfoo::noop;
#include "175.h"

Abraxas/ECS C++ Home  Table of Contents

ABRAXAS SOFTWARE - CodeCheck ECS C++ Test-Suite ECS C++