Commit 46c2c1d5 by Sven Strickroth

Fixed compilation with VS >= 2010

Starting with VS2010 MS ships a stdint.h.

Signed-off-by: Sven Strickroth <email@cs-ware.de>
parent 83261a44
...@@ -40,7 +40,11 @@ ...@@ -40,7 +40,11 @@
#pragma once #pragma once
#endif #endif
#if _MSC_VER >= 1600
#include <stdint.h>
#else
#include "stdint.h" #include "stdint.h"
#endif
// 7.8 Format conversion of integer types // 7.8 Format conversion of integer types
......
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