Changeset 24d6572 for src/AST/Fwd.hpp
- Timestamp:
- Jun 12, 2023, 2:45:32 PM (2 years ago)
- Branches:
- ast-experimental, master
- Children:
- 62d62db
- Parents:
- 34b4268 (diff), 251ce80 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Fwd.hpp
r34b4268 r24d6572 15 15 16 16 #pragma once 17 18 template<typename> struct bitfield; 17 19 18 20 #include "AST/Node.hpp" … … 56 58 class FinallyClause; 57 59 class SuspendStmt; 60 class WhenClause; 58 61 class WaitForStmt; 59 62 class WaitForClause; 63 class WaitUntilStmt; 60 64 class WithStmt; 61 65 class DeclStmt; … … 147 151 class TranslationGlobal; 148 152 153 // For the following types, only use the using type. 154 namespace CV { 155 struct qualifier_flags; 156 using Qualifiers = bitfield<qualifier_flags>; 149 157 } 158 namespace Function { 159 struct spec_flags; 160 using Specs = bitfield<spec_flags>; 161 } 162 namespace Storage { 163 struct class_flags; 164 using Classes = bitfield<class_flags>; 165 } 166 namespace Linkage { 167 struct spec_flags; 168 using Spec = bitfield<spec_flags>; 169 } 170 171 }
Note:
See TracChangeset
for help on using the changeset viewer.