We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a9b627 commit b4329a8Copy full SHA for b4329a8
Libraries/LibCore/CObject.h
@@ -99,3 +99,8 @@ inline void CObject::for_each_child_of_type(Callback callback)
99
return IterationDecision::Continue;
100
});
101
}
102
+
103
+inline const LogStream& operator<<(const LogStream& stream, const CObject& object)
104
+{
105
+ return stream << object.class_name() << '{' << &object << '}';
106
+}
0 commit comments