From dbb0fcdc7aef579ee9e5526acd5d0a62c8bd33bf Mon Sep 17 00:00:00 2001 From: jaco Date: Thu, 14 Aug 2014 19:27:53 +0200 Subject: [PATCH] #pragma warning4127 fixation modified 2 --- modules/core/include/opencv2/core/cvstd.inl.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/core/include/opencv2/core/cvstd.inl.hpp b/modules/core/include/opencv2/core/cvstd.inl.hpp index f43798e..faa7fdb 100644 --- a/modules/core/include/opencv2/core/cvstd.inl.hpp +++ b/modules/core/include/opencv2/core/cvstd.inl.hpp @@ -219,11 +219,14 @@ template static inline std::ostream& operator << (std::ostream& out, const Vec<_Tp, n>& vec) { out << "["; - +#ifdef _MSC_VER #pragma warning( push ) #pragma warning( disable: 4127 ) +#endif if(Vec<_Tp, n>::depth < CV_32F) +#ifdef _MSC_VER #pragma warning( pop ) +#endif { for (int i = 0; i < n - 1; ++i) { out << (int)vec[i] << ", "; -- 2.7.4