Commit a9e30fd6 authored by Davis King's avatar Davis King

Added compiler error messages indicating that newer versions of dlib no longer work with

older versions of Visual Studio.  This is because C++11 support is too bad in older versions
of Visual Studio.
parent a906f398
......@@ -12,6 +12,11 @@
#ifdef _MSC_VER
#if _MSC_VER < 1900
#error "dlib versions newer than v19.1 use C++11 and therefore require Visual Studio 2015 or newer."
#endif
// Disable the following warnings for Visual Studio
// this is to disable the "'this' : used in base member initializer list"
......
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