From afe5723749d4ba06a4cb943f5abbf08c97bd6dc1 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Thu, 26 Jan 2023 17:29:53 +0000 Subject: Add missing braces --- lib/stream_support.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/stream_support.hpp b/lib/stream_support.hpp index a3565d8..6a3c2cf 100644 --- a/lib/stream_support.hpp +++ b/lib/stream_support.hpp @@ -21,8 +21,9 @@ namespace std { { s << '('; for (const auto & i : v) { - if (&i != &v.front()) + if (&i != &v.front()) { s << ", "; + } s << i; } return s << ')'; -- cgit v1.2.3