From 08b1222922a9f7a68fced3f8093ac373dac95b42 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Fri, 12 Feb 2016 21:32:08 +0100 Subject: [PATCH] [DEV] remove unneeded parameter --- eproperty/List.h | 2 +- eproperty/Range.h | 2 +- eproperty/Value.h | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eproperty/List.h b/eproperty/List.h index c9777aa..c33b93a 100644 --- a/eproperty/List.h +++ b/eproperty/List.h @@ -14,7 +14,7 @@ #include namespace eproperty { - template class List : public Property { + template class List : public Property { private: MY_TYPE m_value; //!< Element value ==> can be directly used. MY_TYPE m_default; //!< Default value. diff --git a/eproperty/Range.h b/eproperty/Range.h index 509c3ca..ce96ad0 100644 --- a/eproperty/Range.h +++ b/eproperty/Range.h @@ -12,7 +12,7 @@ #include namespace eproperty { - template class Range : public Property { + template class Range : public Property { private: MY_TYPE m_value; //!< Current value. MY_TYPE m_min; //!< Minimum value. diff --git a/eproperty/Value.h b/eproperty/Value.h index b1c883b..047a323 100644 --- a/eproperty/Value.h +++ b/eproperty/Value.h @@ -12,7 +12,7 @@ namespace eproperty { - template class Value : public Property { + template class Value : public Property { private: MY_TYPE m_value; //!< Current value. MY_TYPE m_default; //!< Default value. @@ -34,7 +34,7 @@ namespace eproperty { m_value(_defaultValue), m_default(_defaultValue) { - }; + } Value(eproperty::Interface& _paramListLink, const std::string& _name, const std::string& _description = "") : @@ -42,7 +42,7 @@ namespace eproperty { m_value(), m_default() { - }; + } /** * @brief Destructor. */ @@ -135,7 +135,7 @@ namespace eproperty { } }; - template std::ostream& operator <<(std::ostream& _os, const eproperty::Value& _obj) { + template std::ostream& operator <<(std::ostream& _os, const eproperty::Value& _obj) { _os << _obj.get(); return _os; }