Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tpie/pipelining/node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ void node::forward_any(std::string key, any_noncopyable value, memory_size_type
case STATE_AFTER_END:
// Allowed since forward() is allowed in end()
break;
default:
log_debug() << "forward in unknown state " << get_state() << std::endl;
case STATE_IN_GO:
// Allowed since forward() is allowed in go()
break;
}

Expand Down