Only include codecvt on Windows.

Should fix gcc build errors.
This commit is contained in:
Aloshi 2015-02-21 21:35:50 -06:00
parent df896cb933
commit 420fecc737

View file

@ -2,7 +2,10 @@
#include <stdlib.h> #include <stdlib.h>
#include <boost/filesystem.hpp> #include <boost/filesystem.hpp>
#include <iostream> #include <iostream>
#ifdef WIN32
#include <codecvt> #include <codecvt>
#endif
std::string getHomePath() std::string getHomePath()
{ {