From 113d5b0ad6033345d7006fca791eef563ff6c223 Mon Sep 17 00:00:00 2001 From: Christian Kruse Date: Tue, 26 Aug 2025 05:29:45 -0700 Subject: [PATCH] Fix extra semi colon (#1770) Summary: Pull Request resolved: https://github.com/facebook/hermes/pull/1770 X-link: https://github.com/facebook/react-native/pull/53459 Changelog: [Internal] This is preventing enabling arfx_cxx_extra_semi_error Reviewed By: cortinico Differential Revision: D80532814 --- API/jsi/jsi/jsi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/API/jsi/jsi/jsi.h b/API/jsi/jsi/jsi.h index 938ee28ab22..e994769c453 100644 --- a/API/jsi/jsi/jsi.h +++ b/API/jsi/jsi/jsi.h @@ -1814,7 +1814,7 @@ U* castInterface(T* ptr) { return static_cast(ptr->castInterface(U::uuid)); } return nullptr; -}; +} /// Helper function to cast the object managed by the shared_ptr \p ptr into an /// interface specified by \c U. If the cast is successful, return a shared_ptr