diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-19 07:32:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-19 07:32:13 +0000 |
commit | 31530bae788dea5c79e72a1f99a56c3f5c6aa36f (patch) | |
tree | a56d05becb403217c3d44a2ee67d3270669c0f3e /include/clang/Basic/SourceManager.h | |
parent | a90a4d4a0a365f991b92e925436ec63ef4969839 (diff) |
SourceManager::getBufferData(SourceLocation) is dead, delete it.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62495 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/SourceManager.h')
-rw-r--r-- | include/clang/Basic/SourceManager.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/clang/Basic/SourceManager.h b/include/clang/Basic/SourceManager.h index c3c1a69631..b60d0dab23 100644 --- a/include/clang/Basic/SourceManager.h +++ b/include/clang/Basic/SourceManager.h @@ -334,9 +334,8 @@ public: return getContentCache(FID)->getBuffer(); } - /// getBufferData - Return a pointer to the start and end of the character + /// getBufferData - Return a pointer to the start and end of the source buffer /// data for the specified FileID. - std::pair<const char*, const char*> getBufferData(SourceLocation Loc) const; std::pair<const char*, const char*> getBufferData(FileID FID) const; /// getIncludeLoc - Return the location of the #include for the specified |