We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f49f056 commit cc52523Copy full SHA for cc52523
modules/flann/include/opencv2/flann/any.h
@@ -246,6 +246,12 @@ struct any
246
return assign(x);
247
}
248
249
+ /// Assignment operator. Template-based version above doesn't work as expected. We need regular assignment operator here.
250
+ any& operator=(const any& x)
251
+ {
252
+ return assign(x);
253
+ }
254
+
255
/// Assignment operator, specialed for literal strings.
256
/// They have types like const char [6] which don't work as expected.
257
any& operator=(const char* x)
0 commit comments