eolian_cxx: Fix "unused parameter" warnings

The Klass(Klass &&other) one was causing "synthesized method ... first
required here' warnings on Windows gcc-4.8.
This commit is contained in:
Lauro Moura 2018-01-23 20:55:50 -03:00
parent 72d92a71ce
commit e70368f10e
1 changed files with 4 additions and 4 deletions

View File

@ -55,10 +55,10 @@ struct class_definition_generator
<< scope_tab << string << "(std::nullptr_t)\n"
<< scope_tab << scope_tab << ": ::efl::eo::concrete(nullptr) {}\n"
<< scope_tab << "explicit " << string << "() = default;\n"
<< scope_tab << string << "(" << string << " const& other) = default;\n"
<< scope_tab << string << "(" << string << "&& other) = default;\n"
<< scope_tab << string << "& operator=(" << string << " const& other) = default;\n"
<< scope_tab << string << "& operator=(" << string << "&& other) = default;\n"
<< scope_tab << string << "(" << string << " const&) = default;\n"
<< scope_tab << string << "(" << string << "&&) = default;\n"
<< scope_tab << string << "& operator=(" << string << " const&) = default;\n"
<< scope_tab << string << "& operator=(" << string << "&&) = default;\n"
<< scope_tab << "template <typename Derived>\n"
<< scope_tab << string << "(Derived&& derived\n"
<< scope_tab << scope_tab << ", typename std::enable_if<\n"