Fixed MSVC 2012 build.
This commit is contained in:
@@ -10,6 +10,10 @@
|
||||
#include <seasonservice.h>
|
||||
#include <math.h>
|
||||
|
||||
#ifdef _WIN32
|
||||
inline double round(double value) { return value < 0 ? -std::floor(0.5 - value) : std::floor(0.5 + value); }
|
||||
#endif
|
||||
|
||||
ShopService::ShopService()
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user