CodeCompass
CodeCompass copied to clipboard
"using" declarative is not handled
The namespace "using" declarative is not handled in the C++ parser:
namespace N {}
void f()
{
using namespace N; // "N" is missing from the database
}