fixed crash in Python bindings

pull/1663/head
Vadim Pisarevsky 12 years ago
parent a9065b7d0c
commit e14171fd33
  1. 6
      modules/python/src2/cv2.cpp

@ -234,14 +234,14 @@ public:
}
}
void map(UMatData* u, int accessFlags) const
void map(UMatData*, int) const
{
stdAllocator->map(u, accessFlags);
}
void unmap(UMatData* u) const
{
stdAllocator->unmap(u);
if(u->urefcount == 0)
deallocate(u);
}
void download(UMatData* u, void* dstptr,

Loading…
Cancel
Save