Skip to content

Fix issue #33 by adding a conditional code block for mingw platform

Bryan Parsons requested to merge github/fork/xaedes/issue33 into master

Created by: xaedes

Fix issue #33 by adding a conditional code block for mingw platform that calls the correct mkdir function.

The mkdir function provided by (admittedly my) mingw platform lacks the mode parameter. This part in the FileUtils.hpp file is conditionally compiled. When compiling in Visual Studio (defined(_MSC_VER)==true) another function_mkdir without the mode parameter is called. In Mingw the function is called mkdir.

Merge request reports