diff options
Diffstat (limited to 'clang/lib/Parse/ParseCXXInlineMethods.cpp')
-rw-r--r-- | clang/lib/Parse/ParseCXXInlineMethods.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Parse/ParseCXXInlineMethods.cpp b/clang/lib/Parse/ParseCXXInlineMethods.cpp index 4aa923ca009..cc61f0f6fd3 100644 --- a/clang/lib/Parse/ParseCXXInlineMethods.cpp +++ b/clang/lib/Parse/ParseCXXInlineMethods.cpp @@ -136,8 +136,8 @@ void Parser::ParseLexedMethodDefs() { if (Tok.is(tok::colon)) ParseConstructorInitializer(LM.D); - - ParseFunctionStatementBody(LM.D, Tok.getLocation(), Tok.getLocation()); + // FIXME: What if ParseConstructorInitializer doesn't leave us with a '{'?? + ParseFunctionStatementBody(LM.D); } } |