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

LibJS: Use correct include + object class for Function{Object,Prototype}

Not causing any real issue, just noticed while debugging vptr sanitation
errors.
This commit is contained in:
Timothy Flynn 2022-09-14 19:08:46 -04:00 committed by Andreas Kling
parent 1c0fc75cb6
commit 98a6f962a0
3 changed files with 2 additions and 3 deletions

View file

@ -16,7 +16,7 @@
namespace JS {
class FunctionObject : public Object {
JS_OBJECT(Function, Object);
JS_OBJECT(FunctionObject, Object);
public:
virtual ~FunctionObject() = default;