Changes in src/AST/Expr.hpp [85855b0:525f7ad]
- File:
-
- 1 edited
-
src/AST/Expr.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Expr.hpp
r85855b0 r525f7ad 494 494 }; 495 495 496 class CountExpr final : public Expr { 497 public: 498 ptr<Type> type; 499 500 CountExpr( const CodeLocation & loc, const Type * t ); 501 502 const Expr * accept( Visitor & v )const override { return v.visit( this ); } 503 private: 504 CountExpr * clone() const override { return new CountExpr( *this ); } 505 MUTATE_FRIEND 506 }; 507 496 508 /// alignof expression, e.g. `alignof(int)`, `alignof 3+4` 497 509 class AlignofExpr final : public Expr {
Note:
See TracChangeset
for help on using the changeset viewer.