constified getFullLoc().

llvm-svn: 44951
This commit is contained in:
Ted Kremenek 2007-12-12 18:55:29 +00:00
parent febe89a6da
commit f82942d04c
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ public:
IdentifierTable &getIdentifierTable() { return Identifiers; }
SelectorTable &getSelectorTable() { return Selectors; }
inline FullSourceLoc getFullLoc(SourceLocation Loc) {
inline FullSourceLoc getFullLoc(SourceLocation Loc) const {
return FullSourceLoc(Loc,getSourceManager());
}