git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43512 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-10-30 20:27:44 +00:00
Родитель e6889f961f
Коммит 2d99833e8c
1 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -880,11 +880,9 @@ QualType ASTContext::getCFConstantStringType() {
// This returns true if a type has been typedefed to BOOL: // This returns true if a type has been typedefed to BOOL:
// typedef <type> BOOL; // typedef <type> BOOL;
static bool isTypeTypedefedAsBOOL(QualType T) static bool isTypeTypedefedAsBOOL(QualType T) {
{
if (const TypedefType *TT = dyn_cast<TypedefType>(T)) if (const TypedefType *TT = dyn_cast<TypedefType>(T))
if (!strcmp(TT->getDecl()->getName(), "BOOL")) return !strcmp(TT->getDecl()->getName(), "BOOL");
return true;
return false; return false;
} }