From 5618f4a0ac1fa2a2374e6789c97fc99d58bdeba3 Mon Sep 17 00:00:00 2001 From: Maksim Shabunin Date: Mon, 7 Sep 2015 18:59:07 +0300 Subject: [PATCH] Fixed: Concurrency static scheduler release failed --- modules/core/src/parallel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/src/parallel.cpp b/modules/core/src/parallel.cpp index caa81299d..064d44cd9 100644 --- a/modules/core/src/parallel.cpp +++ b/modules/core/src/parallel.cpp @@ -238,7 +238,7 @@ public: } SchedPtr() : sched_(0) {} - ~SchedPtr() { *this = 0; } + ~SchedPtr() {} }; static SchedPtr pplScheduler;