diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-01-04 20:41:40 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-01-04 20:41:40 +0000 |
commit | 66748e93e2cc7b5799b81188126d088ce7c22f74 (patch) | |
tree | 8ab93acb049eb6fe3f91e2406266a292833b5144 /clang/lib/AST/Decl.cpp | |
parent | bae14cef806cef1abcf642877c3571d4a04d986e (diff) | |
download | bcm5719-llvm-66748e93e2cc7b5799b81188126d088ce7c22f74.tar.gz bcm5719-llvm-66748e93e2cc7b5799b81188126d088ce7c22f74.zip |
Fix typo. Thanks to dgregor for noticing it.
llvm-svn: 171521
Diffstat (limited to 'clang/lib/AST/Decl.cpp')
-rw-r--r-- | clang/lib/AST/Decl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/Decl.cpp b/clang/lib/AST/Decl.cpp index 91711749071..0a9fc2f5afc 100644 --- a/clang/lib/AST/Decl.cpp +++ b/clang/lib/AST/Decl.cpp @@ -1180,7 +1180,7 @@ SourceRange VarDecl::getSourceRange() const { template<typename decl_type> static bool hasCLanguageLinkageTemplate(const decl_type &D) { // Language linkage is a C++ concept, but saying that everything in C has - // C language linkage fits the implementation nicelly. + // C language linkage fits the implementation nicely. ASTContext &Context = D.getASTContext(); if (!Context.getLangOpts().CPlusPlus) return true; |