Changes in src/AST/Fwd.hpp [71806e0:c86b08d]
- File:
-
- 1 edited
-
src/AST/Fwd.hpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Fwd.hpp
r71806e0 rc86b08d 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.