Skip to content

Commit

Permalink
add missing ;
Browse files Browse the repository at this point in the history
Signed-off-by: Mahdi Movahedi <[email protected]>
  • Loading branch information
movhdi committed Feb 25, 2024
1 parent 7c4ba0a commit 326791e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ocpp/v16/transaction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,12 @@ void Transaction::add_stop_energy_wh(std::shared_ptr<StampedEnergyWh> stop_energ
}

void Transaction::set_has_signed_meter_values() {
std::lock_guard<std::mutex> lock(this->meter_values_mutex)
std::lock_guard<std::mutex> lock(this->meter_values_mutex);
this->has_signed_meter_values = true;
}

bool Transaction::get_has_signed_meter_values() {
std::lock_guard<std::mutex> lock(this->meter_values_mutex)
std::lock_guard<std::mutex> lock(this->meter_values_mutex);
return this->has_signed_meter_values;
}

Expand Down

0 comments on commit 326791e

Please sign in to comment.