Merge pull request #265 from jonnenauha/vc9-fix

Fix stdint.h include that broke the build for VC9 and below.
pull/267/head
Kim Kulling 2014-04-30 09:17:43 +02:00
commit 8255d67a95
1 changed files with 5 additions and 0 deletions

View File

@ -46,7 +46,12 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define __AI_METADATA_H_INC__ #define __AI_METADATA_H_INC__
#include <assert.h> #include <assert.h>
#if defined(_MSC_VER) && (_MSC_VER <= 1500)
#include "pstdint.h"
#else
#include <stdint.h> #include <stdint.h>
#endif