diff options
Diffstat (limited to 'include/version.cpp')
-rw-r--r-- | include/version.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/version.cpp b/include/version.cpp index 164e07756..9cb16d78e 100644 --- a/include/version.cpp +++ b/include/version.cpp @@ -146,9 +146,9 @@ static bool write_version_h(const std::string &versionh, const std::map<std::str return false; fd << "#pragma once" << std::endl; - for (std::map<std::string, std::string>::const_iterator it = versions.begin(); it != versions.end(); ++it) + for (const auto &[key, value] : versions) { - fd << "#define " << it->first << " " << it->second << std::endl; + fd << "#define " << key << " " << value << std::endl; } fd.close(); |