Skip to content

Commit

Permalink
Make comment more generic
Browse files Browse the repository at this point in the history
Co-authored-by: Juan Miguel Carceller <[email protected]>
  • Loading branch information
tmadlener and jmcarcell authored Sep 20, 2024
1 parent 1af1eed commit 948592f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GenericParameters.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ GenericParameters::GenericParameters(const GenericParameters& other) :
m_stringMtx(std::make_unique<std::mutex>()),
m_doubleMtx(std::make_unique<std::mutex>()) {
{
// acquire all four locks at once to make sure all four internal maps are
// acquire all locks at once to make sure all internal maps are
// copied at the same "state" of the GenericParameters
auto& intMtx = other.getMutex<int>();
auto& floatMtx = other.getMutex<float>();
Expand Down

0 comments on commit 948592f

Please sign in to comment.