Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ResolvExpr/ExplodedActual.h

    rd286cf68 r8d7bef2  
    1616#pragma once
    1717
    18 #include <memory>
    1918#include <vector>
    2019
     
    2928                TypeEnvironment env;
    3029                Cost cost;
    31                 std::vector< std::unique_ptr<Expression> > exprs;
     30                std::vector< Expression* > exprs;
    3231
    3332                ExplodedActual() : env(), cost(Cost::zero), exprs() {}
     33
    3434                ExplodedActual( const Alternative& actual, const SymTab::Indexer& indexer );
    35                 ExplodedActual(ExplodedActual&&) = default;
    36                 ExplodedActual& operator= (ExplodedActual&&) = default;
    3735        };
    3836}
Note: See TracChangeset for help on using the changeset viewer.