r176603 - Fix typo.
Rafael Espindola
rafael.espindola at gmail.com
Wed Mar 6 17:34:57 PST 2013
Author: rafael
Date: Wed Mar 6 19:34:57 2013
New Revision: 176603
URL: http://llvm.org/viewvc/llvm-project?rev=176603&view=rev
Log:
Fix typo.
Modified:
cfe/trunk/include/clang/AST/Decl.h
Modified: cfe/trunk/include/clang/AST/Decl.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Decl.h?rev=176603&r1=176602&r2=176603&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Decl.h (original)
+++ cfe/trunk/include/clang/AST/Decl.h Wed Mar 6 19:34:57 2013
@@ -793,7 +793,7 @@ public:
return getStorageClass() == SC_Static && !isFileVarDecl();
}
- /// hasExternStorage - Returns true if a variable has extern or
+ /// hasExternalStorage - Returns true if a variable has extern or
/// __private_extern__ storage.
bool hasExternalStorage() const {
return getStorageClass() == SC_Extern ||
More information about the cfe-commits
mailing list