From: Richard Trieu Date: Fri, 5 May 2017 20:47:50 +0000 (+0000) Subject: [ODRHash] Fix typo, NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa751c356d75e325a9f1c8de9e8a589454ba672f;p=clang [ODRHash] Fix typo, NFC 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 --- diff --git a/include/clang/AST/ODRHash.h b/include/clang/AST/ODRHash.h index 9af8488fca..e4cc12d358 100644 --- a/include/clang/AST/ODRHash.h +++ b/include/clang/AST/ODRHash.h @@ -25,7 +25,7 @@ namespace clang { class Decl; class IdentifierInfo; -class NestedNameSpecifer; +class NestedNameSpecifier; class Stmt; class TemplateParameterList;