From c758311025805d901b11695aa04148f2da3f307f Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Mon, 27 Sep 2010 17:42:11 +0000 Subject: Push twines deeper into SourceMgr's error handling methods. llvm-svn: 114847 --- llvm/utils/TableGen/TGParser.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'llvm/utils/TableGen/TGParser.h') diff --git a/llvm/utils/TableGen/TGParser.h b/llvm/utils/TableGen/TGParser.h index 0aee931423a..6e165220a07 100644 --- a/llvm/utils/TableGen/TGParser.h +++ b/llvm/utils/TableGen/TGParser.h @@ -15,6 +15,7 @@ #define TGPARSER_H #include "TGLexer.h" +#include "llvm/ADT/Twine.h" #include "llvm/Support/SourceMgr.h" #include @@ -53,11 +54,11 @@ public: /// routines return true on error, or false on success. bool ParseFile(); - bool Error(SMLoc L, const std::string &Msg) const { + bool Error(SMLoc L, const Twine &Msg) const { Lex.PrintError(L, Msg); return true; } - bool TokError(const std::string &Msg) const { + bool TokError(const Twine &Msg) const { return Error(Lex.getLoc(), Msg); } private: // Semantic analysis methods. -- cgit v1.2.3