c++跨平台写法

#if __cplusplus >= 201703L || (defined _MSC_VER && _MSC_VER > 1900)
#include <string_view>
#else
#include <boost/utility/string_view.hpp>
#include <boost/functional/hash.hpp>
#endif

猜你喜欢

转载自blog.csdn.net/qq_53332653/article/details/114384194