X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fconfig.hpp;h=d470b85104a2407a478516489cdf269c4e85108c;hb=7f553b1990b5456663e0320c89e3c0aecc0328d7;hp=d1e23225a30d54da15815f3c97b24aa66d8e26da;hpb=04540dd41d0b3c1fad72b3074c0511dadc947657;p=staging%2Fwindowmanager.git 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