diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-03-07 01:34:57 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-03-07 01:34:57 +0000 |
commit | ee86f00f6e9fecc4bd72f97529e471e8b3738b16 (patch) | |
tree | bb77b2b0e8aceb1f06353d979d6fc29c27f7cb9a | |
parent | 883304333dad1ff00114700b5a6fde73751fa3cd (diff) | |
download | bcm5719-llvm-ee86f00f6e9fecc4bd72f97529e471e8b3738b16.tar.gz bcm5719-llvm-ee86f00f6e9fecc4bd72f97529e471e8b3738b16.zip |
Fix typo.
llvm-svn: 176603
-rw-r--r-- | clang/include/clang/AST/Decl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/AST/Decl.h b/clang/include/clang/AST/Decl.h index 2f349fac474..7e966a06540 100644 --- a/clang/include/clang/AST/Decl.h +++ b/clang/include/clang/AST/Decl.h @@ -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 || |