From 4c5838caa09ece64e44a346706c5bc578bf8dceb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20P=C3=B6schel?= Date: Thu, 23 May 2024 10:25:47 +0200 Subject: [PATCH] Fix format_vec how did that line even get in there --- include/openPMD/auxiliary/StringManip.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/include/openPMD/auxiliary/StringManip.hpp b/include/openPMD/auxiliary/StringManip.hpp index 66ad258554..54257d5cfb 100644 --- a/include/openPMD/auxiliary/StringManip.hpp +++ b/include/openPMD/auxiliary/StringManip.hpp @@ -261,7 +261,6 @@ namespace auxiliary auto end = v.end(); std::stringstream res; res << '[' << *it++; - res.operator<<(*it); for (; it != end; ++it) { res << ", " << *it;