- File:
-
- 1 edited
-
src/ResolvExpr/ExplodedActual.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/ExplodedActual.h
rd286cf68 r8d7bef2 16 16 #pragma once 17 17 18 #include <memory>19 18 #include <vector> 20 19 … … 29 28 TypeEnvironment env; 30 29 Cost cost; 31 std::vector< std::unique_ptr<Expression>> exprs;30 std::vector< Expression* > exprs; 32 31 33 32 ExplodedActual() : env(), cost(Cost::zero), exprs() {} 33 34 34 ExplodedActual( const Alternative& actual, const SymTab::Indexer& indexer ); 35 ExplodedActual(ExplodedActual&&) = default;36 ExplodedActual& operator= (ExplodedActual&&) = default;37 35 }; 38 36 }
Note:
See TracChangeset
for help on using the changeset viewer.