diff options
author | Treeston <treeston.mmoc@gmail.com> | 2019-08-07 13:24:00 +0200 |
---|---|---|
committer | Treeston <treeston.mmoc@gmail.com> | 2019-08-07 13:24:00 +0200 |
commit | 910da94d20ae1d6a0bc0d9053e46e698c4da50f9 (patch) | |
tree | 68ee656069180c82201876d0a02fbd6f43c42a84 /src | |
parent | aa7fc4b6ef7d68328bf1d515b49b3fb7b528892b (diff) |
that should make gcc complain less (57b36df follow-up)
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Commands/cs_go.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Commands/cs_go.cpp b/src/server/scripts/Commands/cs_go.cpp index 01c9e13ec55..25018288273 100644 --- a/src/server/scripts/Commands/cs_go.cpp +++ b/src/server/scripts/Commands/cs_go.cpp @@ -406,7 +406,7 @@ public: ++count; if (count) - matches.emplace(count, decltype(matches)::mapped_type({ pair.first, mapName, scriptName.c_str() })); + matches.emplace(count, decltype(matches)::mapped_type(pair.first, mapName, scriptName.c_str())); } if (matches.empty()) { |