Changes in src/ResolvExpr/Resolver.cc [bd4f2e9:bb666f64]
- File:
-
- 1 edited
-
src/ResolvExpr/Resolver.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/Resolver.cc
rbd4f2e9 rbb666f64 18 18 #include <memory> // for allocator, allocator_traits<... 19 19 #include <tuple> // for get 20 #include <vector>21 20 22 21 #include "Alternative.h" // for Alternative, AltList … … 412 411 413 412 // Find all alternatives for all arguments in canonical form 414 std:: vector< AlternativeFinder > argAlternatives;413 std::list< AlternativeFinder > argAlternatives; 415 414 funcFinder.findSubExprs( clause.target.arguments.begin(), clause.target.arguments.end(), back_inserter( argAlternatives ) ); 416 415 417 416 // List all combinations of arguments 418 std:: vector< AltList > possibilities;417 std::list< AltList > possibilities; 419 418 combos( argAlternatives.begin(), argAlternatives.end(), back_inserter( possibilities ) ); 420 419
Note:
See TracChangeset
for help on using the changeset viewer.