Commit 645e67e8 by Vicent Martí

Merge pull request #1171 from csware/fix-compilation-vs2012

Fixed compilation with =>VS2010
parents 83261a44 46c2c1d5
......@@ -40,7 +40,11 @@
#pragma once
#endif
#if _MSC_VER >= 1600
#include <stdint.h>
#else
#include "stdint.h"
#endif
// 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