Prefix all getters with "get"
This commit is contained in:
@@ -58,7 +58,7 @@ std::string computeReplayConfigHash(const std::string& configDir)
|
||||
hasher.appendBytes(bytes.constData(), static_cast<std::size_t>(bytes.size()));
|
||||
}
|
||||
}
|
||||
return toHex(hasher.value());
|
||||
return toHex(hasher.getValue());
|
||||
}
|
||||
|
||||
void ReplayRecorder::startNewRun(unsigned int seed, std::uint64_t initialRngFingerprint)
|
||||
@@ -124,7 +124,7 @@ bool ReplayRecorder::isOpen() const
|
||||
return m_stream.is_open();
|
||||
}
|
||||
|
||||
const std::string& ReplayRecorder::currentFilePath() const
|
||||
const std::string& ReplayRecorder::getCurrentFilePath() const
|
||||
{
|
||||
return m_filePath;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user