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; }