Whitespace fix: no Java-style functions

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2024-12-13 10:28:13 +01:00 committed by Michael Keller
parent bc35aadc20
commit 661ce3f9c7

View file

@ -47,7 +47,8 @@ static std::string video_time(int secs)
return format_string_std("%d:%02d:%02d.000,", hours, mins, secs);
}
static void replace_all(std::string &str, const std::string &old_value, const std::string &new_value) {
static void replace_all(std::string &str, const std::string &old_value, const std::string &new_value)
{
if (old_value.empty())
return;
size_t start_pos = 0;