Merge pull request #4384 from hummeltech/cplusplus17
Fixed check for `__cpp_lib_filesystem` in `filesystem.hpp`
This commit is contained in:
commit
fc2d27d349
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@
|
|||
#ifndef MAPNIK_FILESYSTEM_HPP
|
||||
#define MAPNIK_FILESYSTEM_HPP
|
||||
|
||||
#if defined(__cpp_lib_filesystem) && !defined(USE_BOOST_FILESYSTEM)
|
||||
#if (__cplusplus >= 201703L) && !defined(USE_BOOST_FILESYSTEM)
|
||||
#include <filesystem>
|
||||
#else
|
||||
#include <boost/filesystem/operations.hpp> // for absolute, exists, etc
|
||||
|
|
Loading…
Reference in a new issue