Commit 939b6ad7 authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

small fix in DefaultRngAuto class for easier parsing with Python wrapper generator

parent 191f25ae
......@@ -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&);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment