diff options
| author | Aaron Ballman <aaron@aaronballman.com> | 2015-06-09 12:04:17 +0000 |
|---|---|---|
| committer | Aaron Ballman <aaron@aaronballman.com> | 2015-06-09 12:04:17 +0000 |
| commit | 825fb3c9d4a48d09220b0b0b8a0fe45ff96c9e33 (patch) | |
| tree | 156351b71ad087f2a16018a8eba3912a0304a12d /clang/lib/Basic/SourceLocation.cpp | |
| parent | 3182ee92ba529e70d5e7cc10b62725179ac74622 (diff) | |
| download | bcm5719-llvm-825fb3c9d4a48d09220b0b0b8a0fe45ff96c9e33.tar.gz bcm5719-llvm-825fb3c9d4a48d09220b0b0b8a0fe45ff96c9e33.zip | |
Removing spurious semi colons; NFC.
llvm-svn: 239400
Diffstat (limited to 'clang/lib/Basic/SourceLocation.cpp')
| -rw-r--r-- | clang/lib/Basic/SourceLocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Basic/SourceLocation.cpp b/clang/lib/Basic/SourceLocation.cpp index 6b885a7bc80..d254e8620a9 100644 --- a/clang/lib/Basic/SourceLocation.cpp +++ b/clang/lib/Basic/SourceLocation.cpp @@ -134,7 +134,7 @@ const char *FullSourceLoc::getCharacterData(bool *Invalid) const { StringRef FullSourceLoc::getBufferData(bool *Invalid) const { assert(isValid()); - return SrcMgr->getBuffer(SrcMgr->getFileID(*this), Invalid)->getBuffer();; + return SrcMgr->getBuffer(SrcMgr->getFileID(*this), Invalid)->getBuffer(); } std::pair<FileID, unsigned> FullSourceLoc::getDecomposedLoc() const { |

