Changes in src/AST/Expr.hpp [94c98f0e:5408b59]
- File:
-
- 1 edited
-
src/AST/Expr.hpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Expr.hpp
r94c98f0e r5408b59 254 254 }; 255 255 256 /// A name qualified by a namespace or type.257 256 class QualifiedNameExpr final : public Expr { 258 257 public: … … 260 259 std::string name; 261 260 262 QualifiedNameExpr( const CodeLocation & loc, const Decl * d, const std::string & n ) 261 QualifiedNameExpr( const CodeLocation & loc, const Decl * d, const std::string & n ) 263 262 : Expr( loc ), type_decl( d ), name( n ) {} 264 263 … … 622 621 }; 623 622 624 /// A name that refers to a generic dimension parameter.625 623 class DimensionExpr final : public Expr { 626 624 public: … … 912 910 }; 913 911 912 914 913 } 915 914
Note:
See TracChangeset
for help on using the changeset viewer.