Skip to content

Commit 3e7eeb6

Browse files
Use C++ RTTI on Android (#28610)
### Details: - On current master we have fixed most (or even all) (see #28555) RTTI issues with OpenVINO classes and we can try to switch to C++ RTTI even on Android ### Tickets: - Closes #28450
1 parent 74025c5 commit 3e7eeb6

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/core/include/openvino/core/type.hpp

-4
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,7 @@ class ConversionExtensionBase;
8383

8484
template <typename T>
8585
constexpr bool use_ov_dynamic_cast() {
86-
#if defined(__ANDROID__) || defined(ANDROID)
87-
return true;
88-
#else
8986
return std::is_base_of_v<ov::frontend::ConversionExtensionBase, T>;
90-
#endif
9187
}
9288

9389
/// \brief Tests if value is a pointer/shared_ptr that can be statically cast to a

0 commit comments

Comments
 (0)