doc: shuffled around some sections, fixes.
[staging/windowmanager.git] / src / config.hpp
index d1e2322..d470b85 100644 (file)
@@ -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