summaryrefslogtreecommitdiff
path: root/DevTools
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-01-01 15:33:30 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-01 15:33:30 +0100
commit865f524d5b1257ec77b2d17b93ec777799b4c4ab (patch)
treed99597100b4f0f8670aa0edd8ebe67d5ae60a35a /DevTools
parent7c3b6b10e4230a24dbe44df4f942d63ee27cac89 (diff)
downloadserenity-865f524d5b1257ec77b2d17b93ec777799b4c4ab.zip
AK+LibGUI+LibWeb: Remove AK::TypeTraits in favor of RTTI-based helpers
Now that we have RTTI in userspace, we can do away with all this manual hackery and use dynamic_cast. We keep the is<T> and downcast<T> helpers since they still provide good readability improvements. Note that unlike dynamic_cast<T>, downcast<T> does not fail in a recoverable way, but will assert if the object being casted is not a T.
Diffstat (limited to 'DevTools')
-rw-r--r--DevTools/HackStudio/EditorWrapper.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/DevTools/HackStudio/EditorWrapper.h b/DevTools/HackStudio/EditorWrapper.h
index 38f24c0984..0cf67032a2 100644
--- a/DevTools/HackStudio/EditorWrapper.h
+++ b/DevTools/HackStudio/EditorWrapper.h
@@ -58,7 +58,3 @@ private:
};
}
-
-AK_BEGIN_TYPE_TRAITS(HackStudio::EditorWrapper)
-static bool is_type(const Core::Object& object) { return !strcmp(object.class_name(), "EditorWrapper"); }
-AK_END_TYPE_TRAITS()