- File:
-
- 1 edited
-
src/ResolvExpr/AlternativeFinder.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/AlternativeFinder.h
r1e8bbac9 ra8b27c6 32 32 33 33 namespace ResolvExpr { 34 structArgPack;35 36 /// First index is which argument, second index is which alternative for that argument, 34 class ArgPack; 35 36 /// First index is which argument, second index is which alternative for that argument, 37 37 /// third index is which exploded element of that alternative 38 38 using ExplodedArgs = std::vector< std::vector< ExplodedActual > >; 39 39 40 40 class AlternativeFinder : public Visitor { 41 41 public: … … 43 43 44 44 AlternativeFinder( const AlternativeFinder& o ) 45 : indexer(o.indexer), alternatives(o.alternatives), env(o.env), 45 : indexer(o.indexer), alternatives(o.alternatives), env(o.env), 46 46 targetType(o.targetType) {} 47 47 48 48 AlternativeFinder( AlternativeFinder&& o ) 49 : indexer(o.indexer), alternatives(std::move(o.alternatives)), env(o.env), 49 : indexer(o.indexer), alternatives(std::move(o.alternatives)), env(o.env), 50 50 targetType(o.targetType) {} 51 51 52 52 AlternativeFinder& operator= ( const AlternativeFinder& o ) { 53 53 if (&o == this) return *this; 54 54 55 55 // horrific nasty hack to rebind references... 56 56 alternatives.~AltList(); … … 61 61 AlternativeFinder& operator= ( AlternativeFinder&& o ) { 62 62 if (&o == this) return *this; 63 63 64 64 // horrific nasty hack to rebind references... 65 65 alternatives.~AltList(); … … 174 174 175 175 Cost sumCost( const AltList &in ); 176 void printAlts( const AltList &list, std::ostream &os, unsigned int indentAmt = 0 );177 176 178 177 template< typename InputIterator > … … 182 181 } 183 182 } 184 185 183 } // namespace ResolvExpr 186 184
Note:
See TracChangeset
for help on using the changeset viewer.