Skip to content

Commit e8c6829

Browse files
committed
cleaning up incompatibilties of windows
1 parent 2187d3a commit e8c6829

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/reactor-cpp/impl/action_impl.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ PhysicalAction<T>::PhysicalAction(const std::string& name, reactor::Reactor* con
108108
: Action<T>(name, container, false, Duration::zero()) {
109109
// all physical actions act as input actions to the program as they can be
110110
// scheduled from external threads
111-
this->environment()->insert_input_action(this);
111+
this->environment()->register_input_action(this);
112112
}
113113

114114
} // namespace reactor

lib/environment.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ void Environment::assemble() { // NOLINT
130130
<< " --> to: " << destination_port->fqn() << "(" << destination_port << ")";
131131
}
132132
} else {
133-
if (properties.type_ == ConnectionType::Enclaved || properties.type_ == ConnectionType::PhysicalEnclaved or
133+
if (properties.type_ == ConnectionType::Enclaved || properties.type_ == ConnectionType::PhysicalEnclaved ||
134134
properties.type_ == ConnectionType::DelayedEnclaved) {
135135
// here we need to bundle the downstream ports by their enclave
136136
std::map<Environment*, std::vector<BasePort*>> collector{};

0 commit comments

Comments
 (0)