Changes in src/Tuples/Tuples.h [fd642d2:bc92bee]
- File:
-
- 1 edited
-
src/Tuples/Tuples.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Tuples/Tuples.h
rfd642d2 rbc92bee 52 52 /// returns a TypeInstType if `type` is a ttype, nullptr otherwise 53 53 TypeInstType * isTtype( Type * type ); 54 const TypeInstType * isTtype( const Type * type );55 54 const ast::TypeInstType * isTtype( const ast::Type * type ); 56 55 57 56 /// returns true if the expression may contain side-effects. 58 bool maybeImpure( constExpression * expr );57 bool maybeImpure( Expression * expr ); 59 58 bool maybeImpure( const ast::Expr * expr ); 60 59 61 60 /// Returns true if the expression may contain side-effect, 62 61 /// ignoring the presence of unique expressions. 63 bool maybeImpureIgnoreUnique( constExpression * expr );62 bool maybeImpureIgnoreUnique( Expression * expr ); 64 63 bool maybeImpureIgnoreUnique( const ast::Expr * expr ); 65 64 } // namespace Tuples
Note:
See TracChangeset
for help on using the changeset viewer.