diff options
Diffstat (limited to 'clang/lib/Sema/Sema.h')
-rw-r--r-- | clang/lib/Sema/Sema.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Sema/Sema.h b/clang/lib/Sema/Sema.h index 4fc06f8a3f1..7890070945c 100644 --- a/clang/lib/Sema/Sema.h +++ b/clang/lib/Sema/Sema.h @@ -88,6 +88,7 @@ public: /// push - Push the current alignment onto the stack, optionally /// using the given \arg Name for the record, if non-zero, void push(IdentifierInfo *Name) { + // FIXME: Why does this push 'Name' as an std::string?? Stack.push_back(std::make_pair(Alignment, std::string(Name ? Name->getName() : ""))); } |