Compiler Warning (level 4) C4515
'namespace' : namespace uses itself
A namespace is used recursively.
The following sample generates C4515:
// C4515.cpp
// compile with: /W4
namespace A
{
using namespace A; // C4515
}
int main()
{
}
เบราว์เซอร์นี้ไม่ได้รับการสนับสนุนอีกต่อไป
อัปเกรดเป็น Microsoft Edge เพื่อใช้ประโยชน์จากคุณลักษณะล่าสุด เช่น การอัปเดตความปลอดภัยและการสนับสนุนด้านเทคนิค
'namespace' : namespace uses itself
A namespace is used recursively.
The following sample generates C4515:
// C4515.cpp
// compile with: /W4
namespace A
{
using namespace A; // C4515
}
int main()
{
}