[cfe-commits] r171521 - /cfe/trunk/lib/AST/Decl.cpp
Rafael Espindola
rafael.espindola at gmail.com
Fri Jan 4 12:41:40 PST 2013
Author: rafael
Date: Fri Jan 4 14:41:40 2013
New Revision: 171521
URL: http://llvm.org/viewvc/llvm-project?rev=171521&view=rev
Log:
Fix typo. Thanks to dgregor for noticing it.
Modified:
cfe/trunk/lib/AST/Decl.cpp
Modified: cfe/trunk/lib/AST/Decl.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/Decl.cpp?rev=171521&r1=171520&r2=171521&view=diff
==============================================================================
--- cfe/trunk/lib/AST/Decl.cpp (original)
+++ cfe/trunk/lib/AST/Decl.cpp Fri Jan 4 14:41:40 2013
@@ -1180,7 +1180,7 @@
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;
More information about the cfe-commits
mailing list