diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-07-24 03:27:00 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-07-24 03:27:08 +0200 |
commit | 0783739927e0245c974c21256954784053de795c (patch) | |
tree | a98230a6843322b3d8b61036f85cf8e51b069000 | |
parent | 56b264206539d4d81229e449ce7a5805220f6b5f (diff) |
tracker/aruco: fix lto warning
-rw-r--r-- | tracker-aruco/ftnoir_tracker_aruco.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tracker-aruco/ftnoir_tracker_aruco.cpp b/tracker-aruco/ftnoir_tracker_aruco.cpp index aa12175d..27d5e94b 100644 --- a/tracker-aruco/ftnoir_tracker_aruco.cpp +++ b/tracker-aruco/ftnoir_tracker_aruco.cpp @@ -12,6 +12,10 @@ #include "compat/sleep.hpp" #include "compat/math-imports.hpp" +#ifdef _MSC_VER +# pragma warning(disable : 4702) +#endif + #include <opencv2/core.hpp> #include <opencv2/imgproc.hpp> #include <opencv2/calib3d.hpp> |