Commit 9beac18b authored by Davis King's avatar Davis King

Removed C++11 check here since it's now redundant with the checks in algs.h. Also, the check

doesn't work correctly in visual studio since visual studio doesn't define __cplusplus
to 201103 even though the current version ostensibly supports C++11.
parent 88ab07db
......@@ -23,10 +23,9 @@
#include "../data_io/mnist.cpp"
// Stuff that requires C++11
#if __cplusplus >= 201103
#include "../dnn/cpu_dlib.cpp"
#include "../dnn/tensor_tools.cpp"
#endif
#ifndef DLIB_ISO_CPP_ONLY
// Code that depends on OS specific APIs
......
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