Windows couldn't find the #include <tr1/unordered_map.h>.
They're using Visual Studio 2012 for the Windows build.
It uses: #include <unordered_map>.
(See Microsoft docs.)
Therefore, we're now checking for the include in ConnComponents.cpp, to get the right one.
Windows couldn't find the
#include <tr1/unordered_map.h>
. They're using Visual Studio 2012 for the Windows build. It uses:#include <unordered_map>
. (See Microsoft docs.)Therefore, we're now checking for the include in
ConnComponents.cpp
, to get the right one.