diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2012-07-05 19:34:20 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2012-07-05 19:34:20 +0000 |
commit | 39700f81c5b42e6be93be10275602915f872fc86 (patch) | |
tree | f9345dc6386be34cf3e264fd95881e59e17cb9bc /lib/Parse/Parser.cpp | |
parent | d797a85866fd5ce62850dd145396b451364032a3 (diff) |
objective-c++ parsing. Turn off delayed parsing
of out-of-line c++ method definition which happens
to be inside an objc class implementation
until I can figure out how to do it. This is to fix
a broken project.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159772 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/Parser.cpp')
-rw-r--r-- | lib/Parse/Parser.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Parse/Parser.cpp b/lib/Parse/Parser.cpp index c2c4c90090..4cc5fdeae0 100644 --- a/lib/Parse/Parser.cpp +++ b/lib/Parse/Parser.cpp @@ -773,9 +773,7 @@ bool Parser::isDeclarationAfterDeclarator() { Tok.is(tok::kw_asm) || // int X() __asm__ -> not a function def Tok.is(tok::kw___attribute) || // int X() __attr__ -> not a function def (getLangOpts().CPlusPlus && - Tok.is(tok::l_paren)) || // int X(0) -> not a function def [C++] - (CurParsedObjCImpl && - Tok.is(tok::l_brace)); // C-function nested in an @implementation + Tok.is(tok::l_paren)); // int X(0) -> not a function def [C++] } /// \brief Determine whether the current token, if it occurs after a |