diff options
author | Anders Carlsson <andersca@mac.com> | 2010-01-30 22:25:16 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-01-30 22:25:16 +0000 |
commit | ff93dbd887e40588ed55d135037bb9287488b285 (patch) | |
tree | 3a88704be716f039310968c0050eeadd20c0c2a1 /include/clang/Parse/Action.h | |
parent | 807b06157a1a5c050520fc194d32f16d22d423a8 (diff) |
Use IdentifierInfo * instead of std::string for the AsmStmt names.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94925 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r-- | include/clang/Parse/Action.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index 4854fe66d4..3d470e6244 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -902,7 +902,7 @@ public: bool IsVolatile, unsigned NumOutputs, unsigned NumInputs, - const std::string *Names, + IdentifierInfo **Names, MultiExprArg Constraints, MultiExprArg Exprs, ExprArg AsmString, |