diff options
Diffstat (limited to 'lib/Parse/Parser.cpp')
-rw-r--r-- | lib/Parse/Parser.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Parse/Parser.cpp b/lib/Parse/Parser.cpp index 9eab4fda15..05abfe1a77 100644 --- a/lib/Parse/Parser.cpp +++ b/lib/Parse/Parser.cpp @@ -31,14 +31,16 @@ Parser::Parser(Preprocessor &pp, Action &actions) Action::~Action() {} -void Parser::Diag(SourceLocation Loc, unsigned DiagID, +bool Parser::Diag(SourceLocation Loc, unsigned DiagID, const std::string &Msg) { Diags.Report(FullSourceLoc(Loc,PP.getSourceManager()), DiagID, &Msg, 1); + return true; } -void Parser::Diag(SourceLocation Loc, unsigned DiagID, const SourceRange &R) { +bool Parser::Diag(SourceLocation Loc, unsigned DiagID, const SourceRange &R) { Diags.Report(FullSourceLoc(Loc,PP.getSourceManager()), DiagID, 0, 0, &R, 1); + return true; } |