Skip to content

Commit

Permalink
Fix rebase issue
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Emmers <[email protected]>
  • Loading branch information
marcemmers committed Oct 10, 2023
1 parent 28d9e1e commit 47404b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ocpp/v201/charge_point.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ bool Callbacks::all_callbacks_valid() const {
(!this->configure_network_connection_profile_callback.has_value() or
this->configure_network_connection_profile_callback.value() != nullptr) and
(!this->time_sync_callback.has_value() or this->time_sync_callback.value() != nullptr) and
(!this->configure_ocpp_messages_callback.has_value() or this->configure_ocpp_messages_callback.value() != nullptr);
(!this->ocpp_messages_callback.has_value() or this->ocpp_messages_callback.value() != nullptr);
}

ChargePoint::ChargePoint(const std::map<int32_t, int32_t>& evse_connector_structure,
Expand Down

0 comments on commit 47404b2

Please sign in to comment.