fix: compilation error with gcc 11

../src/modules/network.cpp:22:6: error: ‘optional’ in namespace ‘std’ does not name a template type
   22 | std::optional<unsigned long long> read_netstat(std::string_view category, std::string_view key) {
      |      ^~~~~~~~
../src/modules/network.cpp:7:1: note: ‘std::optional’ is defined in header ‘<optional>’; did you forget to ‘#include <optional>’?
    6 | #include "util/format.hpp"
  +++ |+#include <optional>
    7 | #ifdef WANT_RFKILL
This commit is contained in:
Aleksei Bavshin 2020-11-26 15:38:41 -08:00
parent 85e00b2aab
commit 2695985da0
No known key found for this signature in database
GPG Key ID: 4F071603387A382A
1 changed files with 1 additions and 0 deletions

View File

@ -3,6 +3,7 @@
#include <sys/eventfd.h>
#include <fstream>
#include <cassert>
#include <optional>
#include "util/format.hpp"
#ifdef WANT_RFKILL
#include "util/rfkill.hpp"