diff options
author | Your Name <you@example.com> | 2021-05-02 10:12:49 -0400 |
---|---|---|
committer | Your Name <you@example.com> | 2021-05-02 10:12:49 -0400 |
commit | 77b43093c7b157e8ff0b68af4efd0eff226da35a (patch) | |
tree | af051e78ebe6c26ea373b50fb266935e0b51f9fa /src/utils.h | |
parent | 9e6936d325751a7e0670e8cc6aa61faf048cb241 (diff) | |
download | dmtool-77b43093c7b157e8ff0b68af4efd0eff226da35a.tar.gz dmtool-77b43093c7b157e8ff0b68af4efd0eff226da35a.tar.bz2 dmtool-77b43093c7b157e8ff0b68af4efd0eff226da35a.zip |
Added damage and heal commands
Diffstat (limited to 'src/utils.h')
-rw-r--r-- | src/utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.h b/src/utils.h index e44bdf2..2a66101 100644 --- a/src/utils.h +++ b/src/utils.h @@ -44,7 +44,7 @@ namespace utils { template<typename Container> std::string join(Container parts, std::string joiner) { std::stringstream out; bool isFirst = true; - for(std::string p : parts) { + for(auto p : parts) { if(! isFirst) { out << joiner; } |