Skip to content

Commit f157be3

Browse files
committed
clang-format
1 parent 58419c8 commit f157be3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

include/reactor-cpp/action.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public:
6969
// fully thread safe. However, we rely assembly happening before
7070
// execution and hence can ignore the mutex.
7171
Action(Action&& action) noexcept
72-
: BaseAction(std::move(action)) {}
72+
: BaseAction(std::move(action)) {}
7373
auto operator=(Action&& action) noexcept -> Action& {
7474
BaseAction::operator=(std::move(action));
7575
return *this;

include/reactor-cpp/connection.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ private:
2727

2828
protected:
2929
Connection(const std::string& name, Reactor* container, bool is_logical, Duration min_delay)
30-
: Action<T>(name, container, is_logical, min_delay) {}
30+
: Action<T>(name, container, is_logical, min_delay) {}
3131

3232
[[nodiscard]] auto downstream_ports() -> auto& { return downstream_ports_; }
3333
[[nodiscard]] auto downstream_ports() const -> const auto& { return downstream_ports_; }

include/reactor-cpp/multiport.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private:
3737

3838
protected:
3939
[[nodiscard]] inline auto present_ports() const -> const auto& { return present_ports_; }
40-
[[nodiscard]] inline auto present_ports_size() const -> auto{ return size_.load(); }
40+
[[nodiscard]] inline auto present_ports_size() const -> auto { return size_.load(); }
4141

4242
inline void present_ports_reserve(size_t n) { present_ports_.reserve(n); }
4343

0 commit comments

Comments
 (0)