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
dba6d6f1
Commit
dba6d6f1
authored
Apr 28, 2015
by
miloyip
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include rapidjson.h in error/error.h and internal/*.h
Fixes #321
parent
cca4013d
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
3 deletions
+13
-3
CHANGELOG.md
CHANGELOG.md
+2
-0
error.h
include/rapidjson/error/error.h
+2
-0
diyfp.h
include/rapidjson/internal/diyfp.h
+2
-0
meta.h
include/rapidjson/internal/meta.h
+1
-3
pow10.h
include/rapidjson/internal/pow10.h
+2
-0
stack.h
include/rapidjson/internal/stack.h
+2
-0
strfunc.h
include/rapidjson/internal/strfunc.h
+2
-0
No files found.
CHANGELOG.md
View file @
dba6d6f1
...
...
@@ -4,6 +4,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
*
Include rapidjson.h for all internal/error headers.
## [1.0.1] - 2015-04-25
### Added
...
...
include/rapidjson/error/error.h
View file @
dba6d6f1
...
...
@@ -15,6 +15,8 @@
#ifndef RAPIDJSON_ERROR_ERROR_H__
#define RAPIDJSON_ERROR_ERROR_H__
#include "../rapidjson.h"
/*! \file error.h */
/*! \defgroup RAPIDJSON_ERRORS RapidJSON error handling */
...
...
include/rapidjson/internal/diyfp.h
View file @
dba6d6f1
...
...
@@ -19,6 +19,8 @@
#ifndef RAPIDJSON_DIYFP_H_
#define RAPIDJSON_DIYFP_H_
#include "../rapidjson.h"
#if defined(_MSC_VER) && defined(_M_AMD64)
#include <intrin.h>
#pragma intrinsic(_BitScanReverse64)
...
...
include/rapidjson/internal/meta.h
View file @
dba6d6f1
...
...
@@ -15,9 +15,7 @@
#ifndef RAPIDJSON_INTERNAL_META_H_
#define RAPIDJSON_INTERNAL_META_H_
#ifndef RAPIDJSON_RAPIDJSON_H_
#error <rapidjson.h> not yet included. Do not include this file directly.
#endif
#include "../rapidjson.h"
#ifdef __GNUC__
RAPIDJSON_DIAG_PUSH
...
...
include/rapidjson/internal/pow10.h
View file @
dba6d6f1
...
...
@@ -15,6 +15,8 @@
#ifndef RAPIDJSON_POW10_
#define RAPIDJSON_POW10_
#include "../rapidjson.h"
RAPIDJSON_NAMESPACE_BEGIN
namespace
internal
{
...
...
include/rapidjson/internal/stack.h
View file @
dba6d6f1
...
...
@@ -15,6 +15,8 @@
#ifndef RAPIDJSON_INTERNAL_STACK_H_
#define RAPIDJSON_INTERNAL_STACK_H_
#include "../rapidjson.h"
RAPIDJSON_NAMESPACE_BEGIN
namespace
internal
{
...
...
include/rapidjson/internal/strfunc.h
View file @
dba6d6f1
...
...
@@ -15,6 +15,8 @@
#ifndef RAPIDJSON_INTERNAL_STRFUNC_H_
#define RAPIDJSON_INTERNAL_STRFUNC_H_
#include "../rapidjson.h"
RAPIDJSON_NAMESPACE_BEGIN
namespace
internal
{
...
...
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