diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-08-07 21:19:46 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-08-07 21:19:46 +0000 |
commit | 3189d8c8f2f26d49e129b68f708042da3703816b (patch) | |
tree | e15a53c861d7ca522089ddb154eb3d51ba54639d | |
parent | 62d20a75f522e1a7a0f4ce895ea9be812b48b2ce (diff) |
Remove obsolete comment. Obsoleted by r116524 when Type hierarhy bitfield
implementation was changed to a union of bitfields.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161447 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/Type.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/clang/AST/Type.h b/include/clang/AST/Type.h index bf30777922..863a7ea4d5 100644 --- a/include/clang/AST/Type.h +++ b/include/clang/AST/Type.h @@ -1140,8 +1140,6 @@ private: unsigned TC : 8; /// Dependent - Whether this type is a dependent type (C++ [temp.dep.type]). - /// Note that this should stay at the end of the ivars for Type so that - /// subclasses can pack their bitfields into the same word. unsigned Dependent : 1; /// \brief Whether this type somehow involves a template parameter, even |