]> granicus.if.org Git - clang/commitdiff
[ODRHash] Fix typo, NFC
authorRichard Trieu <rtrieu@google.com>
Fri, 5 May 2017 20:47:50 +0000 (20:47 +0000)
committerRichard Trieu <rtrieu@google.com>
Fri, 5 May 2017 20:47:50 +0000 (20:47 +0000)
NestedNameSpecifer to NestedNameSpecifier.  This was not a problem before since
one of the included headers transitively brought in the definition of the class
and only manifested as a problem when using the typoed NestedNameSpecifer and
getting an incomplete type error instead of a typo correction.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@302284 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/ODRHash.h

index 9af8488fca10e78a70224d8e7d90099542f5e595..e4cc12d358911822941b354d272fb7d377743a6e 100644 (file)
@@ -25,7 +25,7 @@ namespace clang {
 
 class Decl;
 class IdentifierInfo;
-class NestedNameSpecifer;
+class NestedNameSpecifier;
 class Stmt;
 class TemplateParameterList;