Skip to content

Commit

Permalink
Added missing newlines
Browse files Browse the repository at this point in the history
Signed-off-by: Kai-Uwe Hermann <[email protected]>
  • Loading branch information
hikinggrass committed Nov 15, 2024
1 parent ffc407d commit 2162674
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion include/ocpp/common/constants.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ constexpr std::int32_t EVSEID_NOT_SET = -1;

constexpr std::chrono::seconds DEFAULT_WAIT_FOR_FUTURE_TIMEOUT = std::chrono::seconds(60);

} // namespace ocpp
} // namespace ocpp
2 changes: 1 addition & 1 deletion include/ocpp/common/message_dispatcher.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ template <typename T> class MessageDispatcherInterface {
virtual void dispatch_call_error(const json& call_error) = 0;
};

} // namespace ocpp
} // namespace ocpp
2 changes: 1 addition & 1 deletion include/ocpp/v16/message_dispatcher.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ class MessageDispatcher : public MessageDispatcherInterface<MessageType> {
};

} // namespace v16
} // namespace ocpp
} // namespace ocpp
2 changes: 1 addition & 1 deletion include/ocpp/v201/message_dispatcher.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ class MessageDispatcher : public MessageDispatcherInterface<MessageType> {
};

} // namespace v201
} // namespace ocpp
} // namespace ocpp
2 changes: 1 addition & 1 deletion lib/ocpp/v16/message_dispatcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ void MessageDispatcher::dispatch_call_error(const json& call_error) {
}

} // namespace v16
} // namespace ocpp
} // namespace ocpp
2 changes: 1 addition & 1 deletion lib/ocpp/v201/message_dispatcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ void MessageDispatcher::dispatch_call_error(const json& call_error) {
}

} // namespace v201
} // namespace ocpp
} // namespace ocpp
2 changes: 1 addition & 1 deletion tests/lib/ocpp/v201/mocks/message_dispatcher_mock.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ class MockMessageDispatcher : public ocpp::MessageDispatcherInterface<MessageTyp
(const json& call, bool triggered), (override));
MOCK_METHOD(void, dispatch_call_result, (const json& call_result), (override));
MOCK_METHOD(void, dispatch_call_error, (const json& call_error), (override));
};
};

0 comments on commit 2162674

Please sign in to comment.