aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/clang/AST/Decl.h2
-rw-r--r--include/clang/Parse/DeclSpec.h3
2 files changed, 3 insertions, 2 deletions
diff --git a/include/clang/AST/Decl.h b/include/clang/AST/Decl.h
index 0bd250d99b..9e78de3d2e 100644
--- a/include/clang/AST/Decl.h
+++ b/include/clang/AST/Decl.h
@@ -281,7 +281,7 @@ protected:
class VarDecl : public ValueDecl {
public:
enum StorageClass {
- None, Extern, Static, Auto, Register
+ None, Extern, Static, Auto, Register, PrivateExtern
};
StorageClass getStorageClass() const { return (StorageClass)SClass; }
diff --git a/include/clang/Parse/DeclSpec.h b/include/clang/Parse/DeclSpec.h
index 307959f83a..bb2773217e 100644
--- a/include/clang/Parse/DeclSpec.h
+++ b/include/clang/Parse/DeclSpec.h
@@ -38,7 +38,8 @@ public:
SCS_extern,
SCS_static,
SCS_auto,
- SCS_register
+ SCS_register,
+ SCS_private_extern
};
// type-specifier