summaryrefslogtreecommitdiff
path: root/src/bindings
diff options
context:
space:
mode:
authorFelipe Magno de Almeida <felipe@expertisesolutions.com.br>2016-06-15 17:47:19 -0300
committerFelipe Magno de Almeida <felipe@expertisesolutions.com.br>2016-06-15 17:49:56 -0300
commit7e0692b5f377beb89fdc6841bc2dd763cdd88ea3 (patch)
treeb61549ca9d6f8df6c4a0aec0d7b2467e70167838 /src/bindings
parent136d0d684bf771b849fdb014232244a64f3d01a9 (diff)
downloadefl-7e0692b5f377beb89fdc6841bc2dd763cdd88ea3.tar.gz
eolian-cxx: Remove warning about unused parameter
Diffstat (limited to 'src/bindings')
-rw-r--r--src/bindings/cxx/eo_cxx/eo_cxx_interop.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bindings/cxx/eo_cxx/eo_cxx_interop.hh b/src/bindings/cxx/eo_cxx/eo_cxx_interop.hh
index bd7a883dc8..6ff74b10ed 100644
--- a/src/bindings/cxx/eo_cxx/eo_cxx_interop.hh
+++ b/src/bindings/cxx/eo_cxx/eo_cxx_interop.hh
@@ -250,7 +250,7 @@ T* convert_to_c_impl(T& v, tag<T*, T&>)
return &v;
}
template <typename T>
-T* convert_to_c_impl(T& v, tag<T*, T&, true>)
+T* convert_to_c_impl(T& /*v*/, tag<T*, T&, true>)
{
std::abort();
}