From 763b50e50aa68d17815bd39b9cd88cb1ea42923d Mon Sep 17 00:00:00 2001 From: Wenqing Wang <wenqing.wang@ufz.de> Date: Thu, 9 Feb 2023 14:28:09 +0100 Subject: [PATCH] [Test] Fixed a compilation warning --- Tests/FileIO/TestGmlInterface.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Tests/FileIO/TestGmlInterface.h b/Tests/FileIO/TestGmlInterface.h index fc4d18e64b4..1e1f2e715a2 100644 --- a/Tests/FileIO/TestGmlInterface.h +++ b/Tests/FileIO/TestGmlInterface.h @@ -55,8 +55,9 @@ public: for (auto& p : test_pnts) { points.push_back(new GeoLib::Point(p)); - pnt_name_id_map["p" + std::to_string(pos)] = pos; - cpy_name_id_map["p" + std::to_string(pos)] = pos; + std::string const position_name = 'p' + std::to_string(pos); + pnt_name_id_map[position_name] = pos; + cpy_name_id_map[position_name] = pos; pos++; } -- GitLab