Commit a1ce06a1 authored by miloyip's avatar miloyip

Fixes vs2010 warning about INT64_C()

parent ba50fe7d
......@@ -41,9 +41,10 @@
#pragma once
#endif
#if _MSC_VER >= 1600 // [
// miloyip: Originally Visual Studio 2010 uses its own stdint.h. However it generates warning with INT64_C(), so change to use this file for vs2010.
#if _MSC_VER >= 1700 // [
#include <stdint.h>
#else // ] _MSC_VER >= 1600 [
#else // ] _MSC_VER >= 1700 [
#include <limits.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment