summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitor Sousa <vitorsousasilva@gmail.com>2016-03-08 10:28:33 -0300
committerVitor Sousa <vitorsousasilva@gmail.com>2016-03-08 10:49:36 -0300
commitf1a6ff29567c3db71c7ddd58e90715463ac81af9 (patch)
tree45d7ecfedf76fc443361e85a2190fb1a19dd09be
parent35c577578a22362f0628fe52332f14ad4b9ea3ff (diff)
downloadefl-f1a6ff29567c3db71c7ddd58e90715463ac81af9.tar.gz
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
-rw-r--r--src/bindings/eo_cxx/eo_cxx_interop.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bindings/eo_cxx/eo_cxx_interop.hh b/src/bindings/eo_cxx/eo_cxx_interop.hh
index cbfa1a2c31..18af392c83 100644
--- a/src/bindings/eo_cxx/eo_cxx_interop.hh
+++ b/src/bindings/eo_cxx/eo_cxx_interop.hh
@@ -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 {