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