diff options
author | Alp Toker <alp@nuanti.com> | 2013-11-30 23:33:14 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2013-11-30 23:33:14 +0000 |
commit | 54ee53a0c4aaaae9e91af2ef1a11ea27a2dc2911 (patch) | |
tree | 8fcc87601db11d232764c475b0afacfe4ea1f825 /clang/tools/libclang/IndexingContext.h | |
parent | 3422543391ac323f03a8b53fefca00ab2c41306e (diff) | |
download | bcm5719-llvm-54ee53a0c4aaaae9e91af2ef1a11ea27a2dc2911.tar.gz bcm5719-llvm-54ee53a0c4aaaae9e91af2ef1a11ea27a2dc2911.zip |
Fix typo: s/Occurence/Occurrence/
This is a private class member so the fix shouldn't impact external projects.
llvm-svn: 195985
Diffstat (limited to 'clang/tools/libclang/IndexingContext.h')
-rw-r--r-- | clang/tools/libclang/IndexingContext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/tools/libclang/IndexingContext.h b/clang/tools/libclang/IndexingContext.h index 3437d55f014..91a22a98a6f 100644 --- a/clang/tools/libclang/IndexingContext.h +++ b/clang/tools/libclang/IndexingContext.h @@ -286,8 +286,8 @@ class IndexingContext { ContainerMapTy ContainerMap; EntityMapTy EntityMap; - typedef std::pair<const FileEntry *, const Decl *> RefFileOccurence; - llvm::DenseSet<RefFileOccurence> RefFileOccurences; + typedef std::pair<const FileEntry *, const Decl *> RefFileOccurrence; + llvm::DenseSet<RefFileOccurrence> RefFileOccurrences; std::deque<DeclGroupRef> TUDeclsInObjCContainer; |