aboutsummaryrefslogtreecommitdiff
path: root/include/clang/AST/DeclBase.h
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-06-20 00:51:54 +0000
committerDouglas Gregor <dgregor@apple.com>2009-06-20 00:51:54 +0000
commit9cfbe48a7a20a217fdb2920b29b67ae7941cb116 (patch)
tree43a0039929a24ceb9f232089e83fda23c07c7ff1 /include/clang/AST/DeclBase.h
parent6aed766538c9d996b709354386c861037b9eedba (diff)
Parsing and AST support for using declarations, from John Thompson!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@73812 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/AST/DeclBase.h')
-rw-r--r--include/clang/AST/DeclBase.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/clang/AST/DeclBase.h b/include/clang/AST/DeclBase.h
index e2ca1a3298..a2ee895256 100644
--- a/include/clang/AST/DeclBase.h
+++ b/include/clang/AST/DeclBase.h
@@ -159,10 +159,12 @@ private:
/// \brief Whether this declaration was "used", meaning that a definition is
/// required.
bool Used : 1;
-
+
+protected:
/// IdentifierNamespace - This specifies what IDNS_* namespace this lives in.
unsigned IdentifierNamespace : 8;
+private:
#ifndef NDEBUG
void CheckAccessDeclContext() const;
#else