STYLE: avoid any trailing spaces

This commit is contained in:
Kutalmis Bercin 2025-03-14 17:17:15 +00:00 committed by Kutalmış Berçin
parent 31deb5f3be
commit 883d5ed971

View File

@ -200,7 +200,7 @@ void Foam::functionObjects::fieldStatistics::logStatData()
const word& name = iter.key();
const variantOutput& value = iter.val();
Info<< " " << name << " ";
Info<< " " << name;
std::visit
(
[](const auto& v)
@ -210,11 +210,11 @@ void Foam::functionObjects::fieldStatistics::logStatData()
is_vectorspace_v<std::decay_t<decltype(v)>>
)
{
for (const auto& val : v) Info<< val << " ";
for (const auto& val : v) Info<< " " << val;
}
else
{
Info<< v;
Info<< " " << v;
}
},
value