1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 08:13:04 +04:00

gcc6: fix misleading indentation warning

cosmetic changes to fix this warning.
real bugs not found
This commit is contained in:
Krishnaraj Bhat
2016-03-07 17:06:16 +05:30
parent 9ebbfc7bdb
commit 9b8013d193
7 changed files with 37 additions and 34 deletions
+2 -1
View File
@@ -79,7 +79,8 @@ struct big_any_policy : typed_base_any_policy<T>
{
virtual void static_delete(void** x)
{
if (* x) delete (* reinterpret_cast<T**>(x)); *x = NULL;
if (* x) delete (* reinterpret_cast<T**>(x));
*x = NULL;
}
virtual void copy_from_value(void const* src, void** dest)
{