doc: shuffled around some sections, fixes.
[staging/windowmanager.git] / src / config.hpp
index 5b84c53..d470b85 100644 (file)
  * limitations under the License.
  */
 
-//
-// Created by mfritzsc on 8/1/17.
-//
-
 #ifndef TMCAGLWM_CONFIG_HPP
 #define TMCAGLWM_CONFIG_HPP
 
-#include <map>
 #include <experimental/optional>
+#include <map>
 
 namespace wm {
 
@@ -43,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