mirror of
https://git.proxmox.com/git/libgit2
synced 2025-08-06 18:03:32 +00:00
Fixed compilation with VS >= 2010
Starting with VS2010 MS ships a stdint.h. Signed-off-by: Sven Strickroth <email@cs-ware.de>
This commit is contained in:
parent
83261a449f
commit
46c2c1d538
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user