aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Basic/SourceManager.cpp
diff options
context:
space:
mode:
authorJames Dennett <jdennett@google.com>2013-11-24 01:47:49 +0000
committerJames Dennett <jdennett@google.com>2013-11-24 01:47:49 +0000
commitaa61cbbe8beaaac3a5c69a772a8e08f63092a43c (patch)
tree37b3265fb8b2b6cab682dcc752ef159b518420ad /clang/lib/Basic/SourceManager.cpp
parent20be263c378b58ef6359be5b584a751da77cfc8e (diff)
downloadllvm-aa61cbbe8beaaac3a5c69a772a8e08f63092a43c.zip
llvm-aa61cbbe8beaaac3a5c69a772a8e08f63092a43c.tar.gz
llvm-aa61cbbe8beaaac3a5c69a772a8e08f63092a43c.tar.bz2
Fix a typo: "SLocEnty" should read "SLocEntry".
llvm-svn: 195563
Diffstat (limited to 'clang/lib/Basic/SourceManager.cpp')
-rw-r--r--clang/lib/Basic/SourceManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Basic/SourceManager.cpp b/clang/lib/Basic/SourceManager.cpp
index 9d79551..ab113c1 100644
--- a/clang/lib/Basic/SourceManager.cpp
+++ b/clang/lib/Basic/SourceManager.cpp
@@ -1583,7 +1583,7 @@ bool SourceManager::isInMainFile(SourceLocation Loc) const {
return FI.getIncludeLoc().isInvalid();
}
-/// \brief The size of the SLocEnty that \arg FID represents.
+/// \brief The size of the SLocEntry that \p FID represents.
unsigned SourceManager::getFileIDSize(FileID FID) const {
bool Invalid = false;
const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid);