From 343c700f2e1003855dfdeb4e2e7d102dc8bbe696 Mon Sep 17 00:00:00 2001 From: Marcus Fritzsch Date: Tue, 8 Aug 2017 12:04:28 +0200 Subject: clang formatting Signed-off-by: Marcus Fritzsch --- src/config.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/config.hpp') 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 #include +#include namespace wm { @@ -39,11 +39,11 @@ struct config { optional get_int(char const *s) { auto i = this->cfg.find(s); - return i != this->cfg.end() ? optional(std::stoi(i->second)) : nullopt; + return i != this->cfg.end() ? optional(std::stoi(i->second)) + : nullopt; } }; } // namespace wm - -#endif //TMCAGLWM_CONFIG_HPP +#endif // TMCAGLWM_CONFIG_HPP -- cgit 1.2.3-korg