Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
R
rapidjson
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
rapidjson
Commits
dee230b4
Commit
dee230b4
authored
Dec 01, 2015
by
Milo Yip
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #485 from haubi/master
use <wchar.h> with C++ linkage on Windows ARM
parents
28f2ed00
5b268e65
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
stdint.h
include/rapidjson/msinttypes/stdint.h
+4
-4
No files found.
include/rapidjson/msinttypes/stdint.h
View file @
dee230b4
...
...
@@ -89,14 +89,14 @@
#include <limits.h>
// For Visual Studio 6 in C++ mode and for many Visual Studio versions when
// compiling for ARM we
should
wrap <wchar.h> include with 'extern "C++" {}'
// or compiler give many errors like this:
// compiling for ARM we
have to
wrap <wchar.h> include with 'extern "C++" {}'
// or compiler
would
give many errors like this:
// error C2733: second C linkage of overloaded function 'wmemchr' not allowed
#if
def __cplusplus
#if
defined(__cplusplus) && !defined(_M_ARM)
extern
"C"
{
#endif
# include <wchar.h>
#if
def __cplusplus
#if
defined(__cplusplus) && !defined(_M_ARM)
}
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment