Skip to content
Snippets Groups Projects
Commit 5e9df892 authored by Julien Michel's avatar Julien Michel
Browse files

COMP: Remove a warning by applying patch provided in mantis issue #1020

parent 3f2ef7a1
No related branches found
No related tags found
No related merge requests found
......@@ -143,7 +143,9 @@ inline
void otb::ogr::Feature::SetGeometryDirectly(UniqueGeometryPtr geometry)
{
CheckInvariants();
#if !defined(NDEBUG)
OGRGeometry * g = geometry.get();
#endif
UncheckedSetGeometryDirectly(otb::move(geometry));
itkAssertOrThrowMacro((m_Feature->GetGeometryRef() == g), "The new geometry hasn't been set as expected");
itkAssertOrThrowMacro(!geometry, "UniqueGeometryPtr hasn't released its pointer");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment