mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
improve compiler compatability
This commit is contained in:
parent
d7cbbfa8df
commit
e1b09461c1
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@
|
|||
#include <exception>
|
||||
#include <algorithm>
|
||||
|
||||
#if __GNUC__ <= 7
|
||||
#if __GNUC__ <= 7 && !defined(__clang__)
|
||||
#include <experimental/filesystem>
|
||||
#else
|
||||
#include <filesystem>
|
||||
|
@ -44,7 +44,7 @@
|
|||
using namespace villas;
|
||||
using namespace villas::node::api;
|
||||
|
||||
#if __GNUC__ <= 7
|
||||
#if __GNUC__ <= 7 && !defined(__clang__)
|
||||
namespace fs = std::experimental::filesystem;
|
||||
#else
|
||||
namespace fs = std::filesystem;
|
||||
|
|
Loading…
Add table
Reference in a new issue