This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
论坛
实训
竞赛
大数据
AI开发
Register
Sign In
jdk-build-libs
/
json-c
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
11
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
fixe int32_t definition for VC11
int32_t is nowhere in msvc, so the version check could be even removed
tags/json-c-0.12-20140410
Anatol Belski
12 years ago
parent
e48a25cfbb
commit
48ba6b8c06
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
json_inttypes.h
+ 1
- 1
json_inttypes.h
View File
@@ -4,7 +4,7 @@
#include "json_config.h"
#if defined(_MSC_VER) && _MSC_VER < 1700
#if defined(_MSC_VER) && _MSC_VER
=
< 1700
/* Anything less than Visual Studio C++ 10 is missing stdint.h and inttypes.h */
typedef __int32 int32_t;
Write
Preview
Loading…
Cancel
Save