diff --git a/CHANGELOG.md b/CHANGELOG.md index 18d9e550a02..58d0ab8c9c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ x.x.x Release notes (yyyy-MM-dd) ============================================================= ### Enhancements -* Small improvement to performance by caching JSI property String object [#4862](https://github.com/realm/realm-js/pull/4862) +* Small improvement to performance by caching JSI property String object [#4863](https://github.com/realm/realm-js/pull/4863) * None. ### Fixed diff --git a/src/jsi/jsi_class.hpp b/src/jsi/jsi_class.hpp index 79675f12725..851cdba2cbd 100644 --- a/src/jsi/jsi_class.hpp +++ b/src/jsi/jsi_class.hpp @@ -665,8 +665,7 @@ class ObjectWrap { } // namespace realmjsi template -class ObjectWrap : public realm::js::realmjsi::ObjectWrap { -}; +class ObjectWrap : public realm::js::realmjsi::ObjectWrap {}; template fbjsi::Value wrap(fbjsi::Runtime& rt, const fbjsi::Value& thisVal, const fbjsi::Value* args, size_t count)