Changeset ea6332d for src/GenPoly
- Timestamp:
- Aug 15, 2017, 11:59:15 AM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- be9288a
- Parents:
- d180746
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/ScrubTyVars.h
rd180746 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 < assert.h>// for assert18 #include <cassert> // for assert 19 19 20 20 #include "GenPoly.h" // for TyVarMap, isPolyType, isDynType … … 69 69 // return dynamicOnly ? isDynType( ty, tyVars ) : isPolyType( ty, tyVars ); 70 70 } 71 71 72 72 /// Mutates (possibly generic) aggregate types appropriately 73 73 Type* mutateAggregateType( Type *ty ); 74 74 75 75 const TyVarMap *tyVars; ///< Type variables to scrub 76 76 ScrubMode mode; ///< which type variables to scrub? [FromMap]
Note: See TracChangeset
for help on using the changeset viewer.