Try without 'blocking' desugaring of typedef to std entities

This commit is contained in:
Philippe Canal 2013-08-30 05:46:44 -05:00 committed by sftnight
parent 92ffc7afd7
commit 3777a7194e

View File

@ -478,7 +478,7 @@ namespace utils {
assert(decl);
const NamedDecl *outer =dyn_cast_or_null<NamedDecl>(decl->getDeclContext());
while (outer && outer->getName().size() ) {
if (outer->getName().compare("std") == 0 ||
if (//outer->getName().compare("std") == 0 ||
outer->getName().compare("__gnu_cxx") == 0) {
return true;
}