1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:57:45 +00:00

LibWeb: Remove now-unused Bindings::wrap()

This commit is contained in:
Andreas Kling 2022-09-04 21:57:47 +02:00
parent 266136b32f
commit 1bd4ad8b6d

View file

@ -26,10 +26,6 @@ namespace Web::Bindings {
#define WRAPPER_HACK(class_, namespace_) \ #define WRAPPER_HACK(class_, namespace_) \
namespace Web::Bindings { \ namespace Web::Bindings { \
inline JS::Object* wrap(JS::Realm&, namespace_::class_& object) \
{ \
return &object; \
} \
using class_##Wrapper = namespace_::class_; \ using class_##Wrapper = namespace_::class_; \
} }