lexical_cast: removed some legacy MSVC defines

These functions (or at least strtoll) were implemented in MSVC 2013, the minimum we currently support.
This commit is contained in:
Charles Dang 2016-12-07 20:57:01 +11:00
parent fe5089fdd1
commit 7664147cdc

View file

@ -45,11 +45,6 @@
#define __LONG_LONG_SUPPORTED
#endif
#ifdef _MSC_VER
#define strtoll _strtoi64
#define strtoull _strtoui64
#endif
#include "global.hpp"
#include <cstdlib>