eolian-cxx: Remove warning about unused parameter

This commit is contained in:
Felipe Magno de Almeida 2016-06-15 17:47:19 -03:00
parent 136d0d684b
commit 7e0692b5f3
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ T* convert_to_c_impl(T& v, tag<T*, T&>)
return &v; return &v;
} }
template <typename T> 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(); std::abort();
} }