Added missing #include <stdint.h> for uinptr_t with MinGW.

This commit is contained in:
Robert Beckebans 2012-12-01 14:55:24 +01:00 committed by Daniel Gibson
parent f43305fe59
commit 536de6932a

View file

@ -3,6 +3,8 @@
Doom 3 BFG Edition GPL Source Code
Copyright (C) 1993-2012 id Software LLC, a ZeniMax Media company.
Copyright (C) 2012 Daniel Gibson
Copyright (C) 2012 Robert Beckebans
This file is part of the Doom 3 BFG Edition GPL Source Code ("Doom 3 BFG Edition Source Code").
@ -115,6 +117,9 @@ If you have questions concerning this license or the applicable additional terms
#include <math.h>
#include <limits.h>
#include <memory>
// RB: added <stdint.h> for missing uintptr_t with MinGW
#include <stdint.h>
// RB end
//-----------------------------------------------------