mirror of
https://github.com/RPCS3/yaml-cpp.git
synced 2025-02-18 10:14:34 +00:00
node/convert: Enable the template specialization for std::string_view
properly when the library is compiled by MSVC on Windows. (#1227)
This commit is contained in:
parent
9f31491b0f
commit
d046eea331
@ -18,7 +18,7 @@
|
||||
#include <valarray>
|
||||
#include <vector>
|
||||
|
||||
#if __cplusplus >= 201703L
|
||||
#if ((defined(_MSVC_LANG) && _MSVC_LANG >= 201703L) || __cplusplus >= 201703L)
|
||||
#include <string_view>
|
||||
#endif
|
||||
|
||||
@ -93,7 +93,7 @@ struct convert<char[N]> {
|
||||
static Node encode(const char* rhs) { return Node(rhs); }
|
||||
};
|
||||
|
||||
#if __cplusplus >= 201703L
|
||||
#if ((defined(_MSVC_LANG) && _MSVC_LANG >= 201703L) || __cplusplus >= 201703L)
|
||||
template <>
|
||||
struct convert<std::string_view> {
|
||||
static Node encode(std::string_view rhs) { return Node(std::string(rhs)); }
|
||||
|
Loading…
x
Reference in New Issue
Block a user