Code quality: Fixed missing includes on getenv and to_string

This commit is contained in:
Philippe Tillet
2015-08-06 20:50:05 -07:00
parent 1399404f04
commit 14e5ca0ca8
2 changed files with 2 additions and 1 deletions

View File

@@ -13,7 +13,7 @@ template<class T>
inline std::string to_string ( T const t )
{
#ifdef _GLIBCXX_HAVE_BROKEN_VSWPRINTF
#ifdef __CYGWIN__
std::stringstream ss;
ss << t;
return ss.str();