data: _Bool to bool

* changed internal typename of "_Bool" to "bool".
This commit is contained in:
malte_langkabel
2014-10-14 10:40:51 +02:00
parent e91d5474b6
commit ce666acbfd
3 changed files with 27 additions and 22 deletions
+5
View File
@@ -74,6 +74,11 @@ namespace utility
qualifierList.addQualifier(DataTypeQualifierList::QUALIFIER_CONST);
}
if (typeName == "_Bool")
{
typeName = "bool";
}
return DataType(typeName, qualifierList, modifierStack);
}
}