dnn: turn off visibility workaround for OpenVINO 2020.1

pull/16567/head
Alexander Alekhin 5 years ago
parent d81a0da3e0
commit 0a91261c7f
  1. 4
      modules/dnn/src/op_inf_engine.hpp

@ -50,7 +50,7 @@
#pragma warning(disable: 4996) // was declared deprecated
#endif
#if defined(__GNUC__)
#if defined(__GNUC__) && INF_ENGINE_VER_MAJOR_LT(INF_ENGINE_RELEASE_2020_1)
#pragma GCC visibility push(default)
#endif
@ -58,7 +58,7 @@
#include <ie_builders.hpp>
#if defined(__GNUC__)
#if defined(__GNUC__) && INF_ENGINE_VER_MAJOR_LT(INF_ENGINE_RELEASE_2020_1)
#pragma GCC visibility pop
#endif

Loading…
Cancel
Save