Commit f339d2f committed Aug 5, 2024 · 7 / 7
1 parent 884e1f5 commit f339d2f Copy full SHA for f339d2f
File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 85
85
86
86
#if !defined(nsel_CONFIG_WIN32_LEAN_AND_MEAN) && defined(_MSC_VER)
87
87
# define nsel_CONFIG_WIN32_LEAN_AND_MEAN 1
88
+ #else
89
+ # define nsel_CONFIG_WIN32_LEAN_AND_MEAN 0
88
90
#endif
89
91
90
92
// Control presence of C++ exception handling (try and auto discover):
102
104
103
105
// at default use SEH with MSVC for no C++ exceptions
104
106
105
- #ifndef nsel_CONFIG_NO_EXCEPTIONS_SEH
106
- # define nsel_CONFIG_NO_EXCEPTIONS_SEH ( nsel_CONFIG_NO_EXCEPTIONS && _MSC_VER )
107
+ #if !defined(nsel_CONFIG_NO_EXCEPTIONS_SEH) && defined(_MSC_VER)
108
+ # define nsel_CONFIG_NO_EXCEPTIONS_SEH nsel_CONFIG_NO_EXCEPTIONS
109
+ #else
110
+ # define nsel_CONFIG_NO_EXCEPTIONS_SEH 0
107
111
#endif
108
112
109
113
// C++ language version detection (C++23 is speculative):
You can’t perform that action at this time.
0 commit comments