fix more issues for debug builds

This commit is contained in:
Max Lyon
2019-09-27 10:38:56 +02:00
parent 16ca9b363e
commit 8446eaee6f

View File

@@ -508,7 +508,7 @@ class GenericCirculatorT_DEPRECATED : protected GenericCirculatorBaseT<typename
const GenericCirculatorBaseT<Mesh>* self = this; const GenericCirculatorBaseT<Mesh>* self = this;
#ifndef NDEBUG #ifndef NDEBUG
assert(this->heh_.is_valid()); assert(this->heh_.is_valid());
value_type res = (self->GenericCirculatorT_DEPRECATED_TraitsT::toHandle(this->mesh_); value_type res = (GenericCirculatorT_DEPRECATED_TraitsT::toHandle(this->mesh_, this->heh_));
assert(res.is_valid()); assert(res.is_valid());
return make_smart(res, this->mesh_); return make_smart(res, this->mesh_);
#else #else