forgot to conditionally include codecvt in path.cpp

This commit is contained in:
Thomas Fussell 2017-07-02 18:39:44 -07:00
parent 0ee0817757
commit f502626418

View File

@ -21,7 +21,6 @@
// @license: http://www.opensource.org/licenses/mit-license.php
// @author: see AUTHORS file
#include <codecvt>
#include <fstream>
#include <sstream>
#include <sys/stat.h>
@ -32,6 +31,8 @@
#include <linux/limits.h>
#include <sys/types.h>
#include <unistd.h>
#elif define(_MSC_VER)
#include <codecvt>
#endif
#include <detail/external/include_windows.hpp>