共用方式為


編譯器警告 (層級 4) C4515

'namespace' :命名空間本身使用

命名空間會以遞歸方式使用。

下列範例會產生 C4515:

// C4515.cpp
// compile with: /W4
namespace A
{
   using namespace A; // C4515
}

int main()
{
}