Skip to content

Commit db7d8ac

Browse files
authored
Fixed a typo in type_wrapper.h (#218)
_MSCV_LANG should read _MSVC_LANG.
1 parent fe0befb commit db7d8ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hdr/sqlite_modern_cpp/type_wrapper.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#endif
1111
#endif
1212
#ifdef __has_include
13-
#if (__cplusplus > 201402 || _MSCV_LANG > 201402) && __has_include(<optional>)
13+
#if (__cplusplus > 201402 || _MSVC_LANG > 201402) && __has_include(<optional>)
1414
#define MODERN_SQLITE_STD_OPTIONAL_SUPPORT
1515
#elif __has_include(<experimental/optional>) && __apple_build_version__ < 11000000
1616
#define MODERN_SQLITE_EXPERIMENTAL_OPTIONAL_SUPPORT

0 commit comments

Comments
 (0)