summaryrefslogtreecommitdiffstats
path: root/src/config.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.hpp')
-rw-r--r--src/config.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/config.hpp b/src/config.hpp
index d1e2322..d470b85 100644
--- a/src/config.hpp
+++ b/src/config.hpp
@@ -17,8 +17,8 @@
#ifndef TMCAGLWM_CONFIG_HPP
#define TMCAGLWM_CONFIG_HPP
-#include <map>
#include <experimental/optional>
+#include <map>
namespace wm {
@@ -39,11 +39,11 @@ struct config {
optional<int> get_int(char const *s) {
auto i = this->cfg.find(s);
- return i != this->cfg.end() ? optional<int>(std::stoi(i->second)) : nullopt;
+ return i != this->cfg.end() ? optional<int>(std::stoi(i->second))
+ : nullopt;
}
};
} // namespace wm
-
-#endif //TMCAGLWM_CONFIG_HPP
+#endif // TMCAGLWM_CONFIG_HPP