Commit fb6093dd authored by Paul's avatar Paul
Browse files

Make replace shape private

parent 3c6cf1c8
...@@ -24,8 +24,6 @@ struct instruction ...@@ -24,8 +24,6 @@ struct instruction
instruction(literal l); instruction(literal l);
void replace(const shape& r);
void replace(const operation& o); void replace(const operation& o);
void recompute_shape(); void recompute_shape();
...@@ -92,7 +90,8 @@ struct instruction ...@@ -92,7 +90,8 @@ struct instruction
// internal // internal
void replace_argument(instruction_ref old, instruction_ref new_ins); void replace_argument(instruction_ref old, instruction_ref new_ins);
private: void replace(const shape& r);
operation op; operation op;
shape result; shape result;
std::vector<instruction_ref> output; std::vector<instruction_ref> output;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment