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