- File:
-
- 1 edited
-
src/ResolvExpr/ExplodedActual.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/ExplodedActual.h
r8d7bef2 rd286cf68 16 16 #pragma once 17 17 18 #include <memory> 18 19 #include <vector> 19 20 … … 28 29 TypeEnvironment env; 29 30 Cost cost; 30 std::vector< Expression*> exprs;31 std::vector< std::unique_ptr<Expression> > exprs; 31 32 32 33 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; 35 37 }; 36 38 }
Note:
See TracChangeset
for help on using the changeset viewer.