Skip to content

Commit

Permalink
Reverted
Browse files Browse the repository at this point in the history
  • Loading branch information
Fixstars-iizuka committed Dec 19, 2023
1 parent 878f344 commit 0fcc4c4
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions include/ion/node.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,19 +73,12 @@ class Node {
* @return Node object whose port is set.
*/
template<typename... Args>
//Node operator()(Args& ...args) {
Node operator()(Args ...args) {
// for (auto& port : { std::forward<Args>(args)... } ) {
// port.node_id_ = this->id();
// }
impl_->ports = std::vector<Port>{args...};
return *this;
}

void set_port(std::vector<Port>& ports) {
// for (auto& port : ports) {
// port.node_id_ = this->id();
// }
impl_->ports = ports;
}

Expand Down

0 comments on commit 0fcc4c4

Please sign in to comment.