diff options
author | Anders Carlsson <andersca@mac.com> | 2009-12-16 02:09:40 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-12-16 02:09:40 +0000 |
commit | 5ee56e95c3905d2e7bc403631b03865cdbdd8a42 (patch) | |
tree | 18fa20c352bbda38a197a9ba25dcd7e4403547f5 /include/clang/Parse/Action.h | |
parent | 5fdd7643ae81af4ace04f8be888f225b9fcc64b7 (diff) |
Check in a rudimentary FullExpr class that isn't used anywhere yet. Rename Action::FullExpr to Action::MakeFullExpr to avoid name clashes.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91494 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 b7540f9993..92044a0d39 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -131,7 +131,7 @@ public: }; template<typename T> - FullExprArg FullExpr(T &Arg) { + FullExprArg MakeFullExpr(T &Arg) { return FullExprArg(ActOnFinishFullExpr(move(Arg))); } |