LibGUI: Add formatter for Widget.

This commit is contained in:
asynts
2021-01-09 00:12:42 +01:00
committed by Andreas Kling
parent 1160817a9e
commit 7235ddfd98

View File

@@ -399,3 +399,7 @@ inline const Widget* Widget::parent_widget() const
return nullptr;
}
}
template<>
struct AK::Formatter<GUI::Widget> : AK::Formatter<Core::Object> {
};