diff options
author | dec05eba <dec05eba@protonmail.com> | 2022-12-20 17:48:28 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2022-12-20 17:48:28 +0100 |
commit | 04dab789dbd5b0df9cdc5e0cabe67600fa3fd676 (patch) | |
tree | 825c462f5d9fb98190d8c549d3921960286fd341 /src | |
parent | 5aa8de2207fad5de38a069e90c200f980aa620a9 (diff) |
Remove <optional> include
Diffstat (limited to 'src')
-rw-r--r-- | src/config.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/config.hpp b/src/config.hpp index cea47da..feb68dd 100644 --- a/src/config.hpp +++ b/src/config.hpp @@ -10,7 +10,6 @@ #include <stdio.h> #include <pwd.h> #include <sys/stat.h> -#include <optional> struct MainConfig { std::string record_area_option; @@ -290,4 +289,4 @@ static void save_config(const Config &config) { fprintf(file, "replay.time %d\n", config.replay_config.replay_time); fclose(file); -}
\ No newline at end of file +} |