mirror of
https://github.com/libAthena/athena.git
synced 2025-07-03 03:36:04 +00:00
Fix _Bool
error
This commit is contained in:
parent
aa94bdadc4
commit
3c5b138306
@ -262,7 +262,11 @@ class ATDNAEmitVisitor : public clang::RecursiveASTVisitor<ATDNAEmitVisitor> {
|
||||
templateStmt += ", ";
|
||||
qualType += ", ";
|
||||
}
|
||||
templateStmt += nonTypeParm->getType().getAsString().append(1, ' ').append(nonTypeParm->getName().str());
|
||||
if (nonTypeParm->getType()->isBooleanType()) {
|
||||
templateStmt += std::string("bool ") + nonTypeParm->getName().str();
|
||||
} else {
|
||||
templateStmt += nonTypeParm->getType().getAsString().append(1, ' ').append(nonTypeParm->getName().str());
|
||||
}
|
||||
qualType += nonTypeParm->getName();
|
||||
needsComma = true;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user