refactor: Remove old formatting comments

This commit is contained in:
Lars Toenning
2025-08-29 23:12:18 +02:00
parent a0101ef943
commit ea0dc3b039
11 changed files with 0 additions and 23 deletions

View File

@@ -72,14 +72,12 @@ namespace swift::misc
/*!
* Associative container with value semantics, chooses a sensible default implementation container type.
*/
// *INDENT-OFF*
template <class Key, class Value, template <class...> class Impl = TDefaultAssociativeType>
class CDictionary :
public mixin::DBusOperators<CDictionary<Key, Value, Impl>>,
public mixin::DataStreamOperators<CDictionary<Key, Value, Impl>>,
public mixin::JsonOperators<CDictionary<Key, Value, Impl>>,
public mixin::String<CDictionary<Key, Value, Impl>>
// *INDENT-ON*
{
//! \copydoc swift::misc::CValueObject::compare
friend int compare(const CDictionary &a, const CDictionary &b)