1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

add a missing const qualifier for consistency.

llvm-svn: 126742
This commit is contained in:
Chris Lattner 2011-03-01 08:36:21 +00:00
parent e9d448e997
commit 877ce8549d

View File

@ -171,7 +171,7 @@ public:
const SourceMgr *getSourceMgr() const { return SM; }
SMLoc getLoc() const { return Loc; }
const std::string &getFilename() { return Filename; }
const std::string &getFilename() const { return Filename; }
int getLineNo() const { return LineNo; }
int getColumnNo() const { return ColumnNo; }
const std::string &getMessage() const { return Message; }