diff options
author | Chris Lattner <sabre@nondot.org> | 2007-08-30 05:59:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-08-30 05:59:30 +0000 |
commit | 8b6ca8866f09fd8e018a329a0749d2dcf11b146a (patch) | |
tree | da103f2012af718159b3ca5c8e3847c17ed45077 /include/clang/Basic/SourceManager.h | |
parent | fb22d96692c5240fb8d611290dbf7eeed3759c73 (diff) |
constify a method.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41600 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/SourceManager.h')
-rw-r--r-- | include/clang/Basic/SourceManager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/SourceManager.h b/include/clang/Basic/SourceManager.h index 825e7dee65..f479b94e5d 100644 --- a/include/clang/Basic/SourceManager.h +++ b/include/clang/Basic/SourceManager.h @@ -240,7 +240,7 @@ public: /// getSourceName - This method returns the name of the file or buffer that /// the SourceLocation specifies. This can be modified with #line directives, /// etc. - const char *getSourceName(SourceLocation Loc); + const char *getSourceName(SourceLocation Loc) const; /// Given a SourceLocation object, return the logical location referenced by /// the ID. This logical location is subject to #line directives, etc. |