add workaround of inline namespace for c++11
This commit is contained in:
parent
8911e2d76a
commit
e08a7a3531
@ -577,10 +577,14 @@ namespace std
|
||||
{
|
||||
namespace 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
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user