Commit b58b2c5a authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #14878 from JoeHowse:4.1.0-patches

parents de606001 729848ca
......@@ -49,7 +49,12 @@ private:
typedef decltype(check<C>(0)) type;
public:
#if __cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER >= 1900/*MSVS 2015*/)
static CV_CONSTEXPR bool value = type::value;
#else
// support MSVS 2013
static const int value = type::value;
#endif
};
} // namespace sfinae
......
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