Sdbus-C++ upgrade.

This commit is contained in:
Robin E. R. Davies
2025-08-16 16:29:31 -04:00
parent 8f96ae70c6
commit 088bbe868a
62 changed files with 4316 additions and 328 deletions
+2 -2
View File
@@ -38,11 +38,11 @@ std::ostream&operator<<(std::ostream&s, const sdbus::Variant&v)
{
s << '[';
bool first = true;
for (const sdbus::ObjectPath&value: values)
for (const sdbus::Variant&value: values)
{
if (!first) s << ", ";
first = false;
s << value.c_str();
s << value;
}
s << ']';