google-build-using-namespace¶
查找 using namespace
指令。
该检查实现了以下规则,来自 Google C++ 样式指南
您不能使用 using 指令使命名空间中的所有名称可用。
// Forbidden -- This pollutes the namespace.
using namespace foo;
相应的 cpplint.py 检查名称:build/namespaces。
查找 using namespace
指令。
该检查实现了以下规则,来自 Google C++ 样式指南
您不能使用 using 指令使命名空间中的所有名称可用。
// Forbidden -- This pollutes the namespace.
using namespace foo;
相应的 cpplint.py 检查名称:build/namespaces。