aboutsummaryrefslogtreecommitdiff
path: root/sensors.hpp
diff options
context:
space:
mode:
authorGravatar Chris Xiong <chirs241097@gmail.com> 2018-05-05 11:13:12 +0800
committerGravatar Chris Xiong <chirs241097@gmail.com> 2018-05-05 11:13:12 +0800
commit61e0a974c07f38b8e42f226d68f22e2d1b26fa6d (patch)
tree0e346d7b12b63f9cd6ec1e22dc2441c4234d785e /sensors.hpp
parentef269036a9c21ee8ec5966f0662f4b6b328226ec (diff)
downloadlightsd-61e0a974c07f38b8e42f226d68f22e2d1b26fa6d.tar.xz
No longer using experimental/filesystem as I started using gcc 8.1.
Diffstat (limited to 'sensors.hpp')
-rw-r--r--sensors.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sensors.hpp b/sensors.hpp
index 86ff6a1..7b549ba 100644
--- a/sensors.hpp
+++ b/sensors.hpp
@@ -3,7 +3,7 @@
#include <cstdint>
#include <string>
#include <any>
-#include <experimental/filesystem>
+#include <filesystem>
#include <functional>
#include <unordered_map>
#include <tuple>
@@ -12,7 +12,7 @@
#define IIODEV_SYSFS_PATH_BASE "/sys/bus/iio/devices/iio:device"
#define DEV_PATH "/dev/iio:device"
-namespace filesystem=std::experimental::filesystem::v1;
+namespace filesystem=std::filesystem;
struct scan_t
{