Merge pull request #440 from expipiplus1/correct_include

Use correct header for INT_MAX
pull/442/merge
Alexander Gessler 2015-01-22 18:53:53 -08:00
commit 5f646f2097
1 changed files with 1 additions and 0 deletions

View File

@ -50,6 +50,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#if defined(_MSC_VER) && (_MSC_VER <= 1500)
#include "Compiler/pstdint.h"
#else
#include <limits.h>
#include <stdint.h>
#endif