Changes in src/GenPoly/ScrubTyVars.h [6b0b624:ea6332d]
- File:
-
- 1 edited
-
src/GenPoly/ScrubTyVars.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/ScrubTyVars.h
r6b0b624 rea6332d 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // ScrubTyVars.h -- 7 // ScrubTyVars.h -- 8 8 // 9 9 // Author : Richard C. Bilson … … 16 16 #pragma once 17 17 18 #include < string>18 #include <cassert> // for assert 19 19 20 #include "GenPoly.h" 20 #include "GenPoly.h" // for TyVarMap, isPolyType, isDynType 21 #include "SynTree/Mutator.h" // for Mutator 22 #include "SynTree/Type.h" // for Type (ptr only), PointerType (ptr only) 21 23 22 #include "SynTree/SynTree.h" 23 #include "SynTree/Mutator.h" 24 class AlignofExpr; 25 class Expression; 26 class SizeofExpr; 24 27 25 28 namespace GenPoly { … … 66 69 // return dynamicOnly ? isDynType( ty, tyVars ) : isPolyType( ty, tyVars ); 67 70 } 68 71 69 72 /// Mutates (possibly generic) aggregate types appropriately 70 73 Type* mutateAggregateType( Type *ty ); 71 74 72 75 const TyVarMap *tyVars; ///< Type variables to scrub 73 76 ScrubMode mode; ///< which type variables to scrub? [FromMap]
Note:
See TracChangeset
for help on using the changeset viewer.