Commit cfd6e7de authored by Chris Pickett's avatar Chris Pickett

Documented what the suppressed warning is about

parent 30013b4f
......@@ -211,7 +211,7 @@ inline void EnsureDirExists(const std::string &filepath) {
if (parent.length()) EnsureDirExists(parent);
#ifdef _WIN32
#ifdef _MSC_VER
#pragma warning(suppress: 6031)
#pragma warning(suppress: 6031) // "return value ignored: <function> could return unexpected value"
#endif
_mkdir(filepath.c_str());
#else
......
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