Skip to content
Snippets Groups Projects
Commit 6f438eeb authored by James Dennett's avatar James Dennett
Browse files

Fix a typo: "SLocEnty" should read "SLocEntry".

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@195563 91177308-0d34-0410-b5e6-96231b3b80d8
parent 8a232c2c
No related branches found
No related tags found
No related merge requests found
......@@ -1332,7 +1332,7 @@ public:
return loc.isMacroID() && isInSystemHeader(getSpellingLoc(loc));
}
/// \brief The size of the SLocEnty that \p FID represents.
/// \brief The size of the SLocEntry that \p FID represents.
unsigned getFileIDSize(FileID FID) const;
/// \brief Given a specific FileID, returns true if \p Loc is inside that
......
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment