eo_cxx: Fix unused parameter warning when no constructor is required

Test Plan: compile elm

Reviewers: stefan_schmidt

Subscribers: cedric, jpeg

Differential Revision: https://phab.enlightenment.org/D3778
This commit is contained in:
Vitor Sousa 2016-03-08 10:28:33 -03:00
parent 35c577578a
commit f1a6ff2956
1 changed files with 1 additions and 0 deletions

View File

@ -476,6 +476,7 @@ void call_ctors(Eo* _obj_eoid, Fs&&... fs)
{
std::initializer_list<int const> const v {(fs(_obj_eoid), 0)...};
(void) v;
(void) _obj_eoid;
}
} } // namespace efl { namespace eolian {