mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
209 B
14 lines
209 B
7 years ago
|
#if __cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER >= 1600)
|
||
|
// OK
|
||
|
#else
|
||
|
#error "C++11 is not supported"
|
||
|
#endif
|
||
|
|
||
|
static int test() { return 0; }
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
auto res = test();
|
||
|
return res;
|
||
|
}
|