add workaround of inline namespace for c++11

This commit is contained in:
Jinhao 2019-12-21 05:18:28 +08:00
parent 8911e2d76a
commit e08a7a3531

View File

@ -577,10 +577,14 @@ namespace std
{
namespace filesystem
{
inline namespace nana_filesystem
#if defined(_MSC_VER) && ((!defined(_MSVC_LANG)) || _MSVC_LANG < 201703)
using namespace ::nana::filesystem;
#else
inline namespace nana_filesystem
{
using namespace ::nana::filesystem;
}
#endif
}
}