]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/getopt.h
Style fix: split function bodies to separate line outside of class
[libs/core.git] / source / core / getopt.h
index 56ab05123584ef83fcc51cd838802ef4a941c453..ea1f7d36a33fcea90ba552e58cb8b7546e462f34 100644 (file)
@@ -158,8 +158,11 @@ public:
        std::string generate_help() const;
 };
 
        std::string generate_help() const;
 };
 
-template<> inline void GetOpt::Option<bool>::store()     { data = true; }
-template<> inline void GetOpt::Option<unsigned>::store() { ++data; }
+template<> inline void GetOpt::Option<bool>::store()
+{ data = true; }
+
+template<> inline void GetOpt::Option<unsigned>::store()
+{ ++data; }
 
 template<> inline void GetOpt::Option<std::string>::store(const std::string &a)
 { data = a; }
 
 template<> inline void GetOpt::Option<std::string>::store(const std::string &a)
 { data = a; }