- Timestamp:
- Sep 23, 2023, 10:50:18 PM (2 years ago)
- Branches:
- master
- Children:
- c7616dd
- Parents:
- deda7e6
- Location:
- src/AST
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Pass.impl.hpp
rdeda7e6 r62c6cfa 1860 1860 maybe_accept( node, &ArrayType::dimension ); 1861 1861 maybe_accept( node, &ArrayType::base ); 1862 maybe_accept( node, &ArrayType::declaredType );1863 1862 } 1864 1863 -
src/AST/Type.hpp
rdeda7e6 r62c6cfa 216 216 DimensionFlag isStatic; 217 217 218 ptr<Decl> declaredType;219 220 218 ArrayType( const Type * b, const Expr * d, LengthFlag vl, DimensionFlag s, 221 219 CV::Qualifiers q = {} ) : Type(q), base(b), dimension(d), isVarLen(vl), isStatic(s) {}
Note:
See TracChangeset
for help on using the changeset viewer.