We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4951954 commit 3d24df5Copy full SHA for 3d24df5
src/core/src/any.cpp
@@ -22,7 +22,7 @@ namespace ov {
22
23
bool util::equal(std::type_index lhs, std::type_index rhs) {
24
auto result = lhs == rhs;
25
-#if (defined(__ANDROID__) || defined(__APPLE__)) && defined(__clang__)
+#if (defined(__ANDROID__) || defined(__APPLE__) || defined(__CHROMIUMOS__)) && defined(__clang__)
26
if (!result) {
27
result = std::strcmp(lhs.name(), rhs.name()) == 0;
28
}
0 commit comments