Fix visibility of g_linked_ptr_mutex on Windows

Reverts some changes in b8ed00bd64
This commit is contained in:
Leszek Swirski
2013-05-15 14:42:28 +01:00
parent 54afb85d0c
commit 0e8c2b0395
3 changed files with 29 additions and 1 deletions

View File

@@ -4,6 +4,14 @@
#include "opencv2/core/cvdef.h"
#include <stdarg.h> // for va_list
#include "cvconfig.h"
#ifndef GTEST_CREATE_SHARED_LIBRARY
#ifdef BUILD_SHARED_LIBS
#define GTEST_LINKED_AS_SHARED_LIBRARY 1
#endif
#endif
#ifdef _MSC_VER
#pragma warning( disable: 4127 )
#endif