From 939b6ad72f14f806661b2e68022dc4913249371b Mon Sep 17 00:00:00 2001 From: Vadim Pisarevsky Date: Tue, 12 Oct 2010 12:36:20 +0000 Subject: [PATCH] small fix in DefaultRngAuto class for easier parsing with Python wrapper generator --- modules/features2d/include/opencv2/features2d/features2d.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/features2d/include/opencv2/features2d/features2d.hpp b/modules/features2d/include/opencv2/features2d/features2d.hpp index 8d9d6a9ff..2adefb6a5 100644 --- a/modules/features2d/include/opencv2/features2d/features2d.hpp +++ b/modules/features2d/include/opencv2/features2d/features2d.hpp @@ -181,10 +181,9 @@ namespace cv { struct CV_EXPORTS DefaultRngAuto { - const static uint64 def_state = (uint64)-1; const uint64 old_state; - DefaultRngAuto() : old_state(theRNG().state) { theRNG().state = def_state; } + DefaultRngAuto() : old_state(theRNG().state) { theRNG().state = (uint64)-1; } ~DefaultRngAuto() { theRNG().state = old_state; } DefaultRngAuto& operator=(const DefaultRngAuto&);