diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-12-03 17:05:59 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-12-03 17:05:59 +0000 |
commit | 109ae73ec71a1d27358510ce049b59637b4a6b40 (patch) | |
tree | 6491a764855db520c89ef2380703ba82a17b0c57 /include/clang/Lex/Preprocessor.h | |
parent | c085a981cec80d1c2e39182116700f200c98c880 (diff) |
Minor cleanup to the code-completion-point logic suggested by Chris.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90459 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Lex/Preprocessor.h')
-rw-r--r-- | include/clang/Lex/Preprocessor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Lex/Preprocessor.h b/include/clang/Lex/Preprocessor.h index 939444167b..cd202e5899 100644 --- a/include/clang/Lex/Preprocessor.h +++ b/include/clang/Lex/Preprocessor.h @@ -507,7 +507,7 @@ public: /// \brief Determine if this source location refers into the file /// for which we are performing code completion. - bool isCodeCompletionFile(SourceLocation FileLoc); + bool isCodeCompletionFile(SourceLocation FileLoc) const; /// Diag - Forwarding function for diagnostics. This emits a diagnostic at /// the specified Token's location, translating the token's start |