From d3b4cafbbb684a6f65ee9cc19162f2546c5326cb Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sat, 7 Jul 2012 09:56:27 +0300 Subject: [PATCH 1/1] Style fix: split function bodies to separate line outside of class --- source/core/getopt.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/source/core/getopt.h b/source/core/getopt.h index 56ab051..ea1f7d3 100644 --- a/source/core/getopt.h +++ b/source/core/getopt.h @@ -158,8 +158,11 @@ public: std::string generate_help() const; }; -template<> inline void GetOpt::Option::store() { data = true; } -template<> inline void GetOpt::Option::store() { ++data; } +template<> inline void GetOpt::Option::store() +{ data = true; } + +template<> inline void GetOpt::Option::store() +{ ++data; } template<> inline void GetOpt::Option::store(const std::string &a) { data = a; } -- 2.43.0