mirror of
				https://github.com/isar/libmdbx.git
				synced 2025-11-04 05:08:57 +08:00 
			
		
		
		
	mdbx++: add ifndef-guard for _CRT_SECURE_NO_WARNINGS.
				
					
				
			This commit is contained in:
		@@ -67,7 +67,7 @@
 | 
			
		||||
#endif
 | 
			
		||||
#ifndef _CRT_SECURE_NO_WARNINGS
 | 
			
		||||
#define _CRT_SECURE_NO_WARNINGS
 | 
			
		||||
#endif
 | 
			
		||||
#endif /* _CRT_SECURE_NO_WARNINGS */
 | 
			
		||||
#if _MSC_VER > 1800
 | 
			
		||||
#pragma warning(disable : 4464) /* relative include path contains '..' */
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
@@ -5,9 +5,9 @@
 | 
			
		||||
// Non-inline part of the libmdbx C++ API (preliminary)
 | 
			
		||||
//
 | 
			
		||||
 | 
			
		||||
#ifdef _MSC_VER
 | 
			
		||||
#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS)
 | 
			
		||||
#define _CRT_SECURE_NO_WARNINGS
 | 
			
		||||
#endif
 | 
			
		||||
#endif /* _CRT_SECURE_NO_WARNINGS */
 | 
			
		||||
 | 
			
		||||
#include "../mdbx.h++"
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -33,7 +33,7 @@
 | 
			
		||||
#if defined(_WIN32) || defined(_WIN64)
 | 
			
		||||
#if !defined(_CRT_SECURE_NO_WARNINGS)
 | 
			
		||||
#define _CRT_SECURE_NO_WARNINGS
 | 
			
		||||
#endif
 | 
			
		||||
#endif /* _CRT_SECURE_NO_WARNINGS */
 | 
			
		||||
#if !defined(_NO_CRT_STDIO_INLINE) && MDBX_BUILD_SHARED_LIBRARY &&             \
 | 
			
		||||
    !defined(xMDBX_TOOLS) && MDBX_WITHOUT_MSVC_CRT
 | 
			
		||||
#define _NO_CRT_STDIO_INLINE
 | 
			
		||||
 
 | 
			
		||||
@@ -23,7 +23,9 @@
 | 
			
		||||
#define _WIN32_WINNT 0x0601 /* Windows 7 */
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef _MSC_VER
 | 
			
		||||
#ifndef _CRT_SECURE_NO_WARNINGS
 | 
			
		||||
#define _CRT_SECURE_NO_WARNINGS
 | 
			
		||||
#endif /* _CRT_SECURE_NO_WARNINGS */
 | 
			
		||||
#pragma warning(push, 1)
 | 
			
		||||
#pragma warning(disable : 4548) /* expression before comma has no effect;      \
 | 
			
		||||
                                   expected expression with side - effect */
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user