Milo Yip
77ae0b9795
Merge pull request #987 from sledgeh/master
...
Fixed #985 : Unittest failed with MinGWx64. And few small improvement…
2017-06-28 11:36:06 +08:00
Milo Yip
6a8f672ca1
Merge pull request #994 from Chocobo1/svg
...
Improve readme.md
2017-06-21 17:01:54 +08:00
Chocobo1
a31a380cb8
Improve readme.md
...
Add alt text for images
Use https whenever possible
Update URLs
Use tools.ietf.org for RFC7159
Correct indent for sublists
Trim trailing whitespaces
2017-06-21 14:40:46 +08:00
kyb
6e81d49b33
Fixed #985 : Unittest failed with MinGWx64. And few small improvement were done while looking for mistakes.
...
Problem was because of Windows uses backslashes '\', not Unix '/'
2017-06-15 13:24:01 +03:00
Milo Yip
b596f4e990
Merge pull request #977 from miloyip/issue825_patternProperties
...
Fix patternProperties & additionalProperties lead to ASSERT
2017-06-09 15:06:11 +08:00
Milo Yip
df6362d450
Fix patternProperties & additionalProperties lead to ASSERT
...
Fix #825
2017-06-09 10:16:24 +08:00
Milo Yip
342a616a7f
Merge pull request #969 from pah/fixes/962-copy-const-strings
...
Fixup #964 by forwarding copyConstStrings recursively
2017-05-28 14:49:15 +08:00
Philipp A. Hartmann
68c96e987b
Fixup #964 by forwarding copyConstStrings recursively
...
As reported by @Llerd in #962 , the `copyConstStrings` parameter
has not been forwarded recursively to the constructors of
object members and array elements.
2017-05-27 10:26:35 +02:00
Milo Yip
33443e63a9
Merge pull request #967 from TomaszNo/storage-class-first
...
Storage class is not first - encodings.h
2017-05-26 06:25:12 +08:00
Tomasz Noczynski (Linux)
294ad93e30
To avoid Intel C++ Compiler #1879 warnings:
...
warning #1879 : unimplemented pragma ignored: #pragma intrinsic(_BitScanReverse64)
warning #1879 : unimplemented pragma ignored: #pragma intrinsic(_umul128)
2017-05-25 14:14:16 +02:00
Tomasz Noczynski (Linux)
77d2fadfb6
If storage class is not specified as first in declaration then Intel C++ Compiler 2017 generates message:
...
message #82 : storage class is not first
2017-05-25 13:21:57 +02:00
Milo Yip
3202b0a3dd
Merge pull request #964 from pah/fixes/962-copy-const-strings
...
GenericValue::CopyFrom: add option to force copying of strings
2017-05-19 09:47:15 +08:00
Philipp A. Hartmann
4ef1ff4fba
GenericValue::CopyFrom: add option to force copying of strings
...
Copying the result of an in-situ parsing into another value/document
currently requires that the original buffer - still holding the strings
from the parsing, outlives the destination object as well.
In order to obtain a "full" copy of a GenericValue, this commit adds
an optional flag `copyConstStrings` to `CopyFrom`, which then forces
to take a copy of all embedded strings in the source value.
This solves the problem discussed in #962 .
2017-05-18 19:11:04 +02:00
Milo Yip
0033268c11
Update tutorial.zh-cn.md
...
typo
2017-05-12 17:30:33 +08:00
Milo Yip
56b7216efe
Fix #949 about -Werror=conversion
2017-05-12 10:32:41 +08:00
Milo Yip
f8eb7bae89
Remove -Weverything
...
See #930
2017-05-12 10:32:06 +08:00
Milo Yip
b61bbbfe37
Fix #947 -Weffc++ warning
2017-05-11 16:41:26 +08:00
Milo Yip
67b062b3c6
Merge pull request #946 from hwiesmann/master
...
Add convenience method Key(std::basic_string<Ch> const&) to Writer
2017-05-11 10:04:29 +08:00
Hartwig
568107e178
Add convenience method Key(std::basic_string<Ch> const&) to Writer
2017-05-10 22:56:01 +02:00
Milo Yip
fe2b3603e7
Merge pull request #941 from harrywong/master
...
Add fallthrough attribute to suppress GCC 7.1 warning
2017-05-04 17:23:38 +08:00
Harry Wong
cba45fe9de
Onley apply to GCC 7
2017-05-04 10:32:45 +08:00
Harry Wong
fe19b7b601
Supress implicit fallthrough in GCC
2017-05-04 10:08:48 +08:00
Milo Yip
a13acda972
Merge pull request #937 from bytePro17124/patch-1
...
typo
2017-04-30 13:37:52 +08:00
Matthew Early
4fe02e15f9
typo
2017-04-29 16:07:23 -04:00
Milo Yip
b45c5408d1
Merge pull request #932 from JunHe77/master
...
Added ARM-Neon support for SIMD.SkipWhitespace*
2017-04-24 16:22:14 +08:00
Milo Yip
d2fce92438
Merge pull request #933 from OlegHahm/minor_fixes
...
Minor fixes
2017-04-22 10:58:02 +08:00
Oliver Hahm
885b5cd2f9
common notation of empty if/else case
2017-04-21 14:49:30 +02:00
Oliver Hahm
63423eb6f8
fix return values
2017-04-21 14:49:12 +02:00
Alejandro Martinez
2291258bb8
Added ARM-Neon support for SIMD.SkipWhitespace*
...
Change-Id: Iaf210d029758723a7eeb7f28fc10cab7467889a9
Signed-off-by: Jun He <jun.he@arm.com>
2017-04-21 07:33:17 +00:00
Milo Yip
e6d7247ed9
Merge pull request #924 from lichray/fix-gcc7-warning
...
Fix a non-type template parameter type mismatch
2017-04-17 14:44:08 +08:00
Milo Yip
c6aec19ed8
Merge pull request #930 from pah/feature/cxx11-static_assert
...
RAPIDJSON_STATIC_ASSERT: use C++11 static_assert, if available
2017-04-16 17:48:45 +08:00
Philipp A. Hartmann
f93a29bec2
RAPIDJSON_STATIC_ASSERT: use C++11 static_assert, if available
2017-04-14 20:19:16 +02:00
Zhihao Yuan
ec90588c72
Fix a non-type template parameter type mismatch
...
This issues a warning in gcc7.
2017-04-08 22:51:15 -05:00
Milo Yip
fcd263c61a
Merge pull request #923 from miloyip/issue910_casting
...
Fix #910 incorrect casting
2017-04-07 15:05:47 +08:00
Milo Yip
77f643dc51
Fix #910 incorrect casting
2017-04-07 10:23:30 +08:00
Milo Yip
5d9d0f78b5
Merge pull request #909 from miloyip/issue905_PrettyWriterWriteFlags
...
Fix #905 unable to set writeFlags for PrettyWriter
2017-03-27 18:26:17 +08:00
Milo Yip
d88be8ef16
Fix #905 unable to set writeFlags for PrettyWriter
2017-03-27 14:05:03 +08:00
Milo Yip
b8f0414b9a
Merge pull request #907 from almavi/master
...
Fixed bug on space hexadecimal encoding
2017-03-25 11:10:48 +08:00
Alejandro Martinez
85500e8c8f
Changed error code for invalid special ascii chars, fixed writer tests
2017-03-24 13:37:23 +00:00
Alejandro Martinez
3c6e2cf030
Added unittests for invalid ascii control chars
2017-03-23 10:14:17 +00:00
Alejandro Martinez
da4fd6794c
Fixed bug on space hexadecimal encoding
2017-03-22 10:19:54 +00:00
Milo Yip
430e8d4c9b
Update schema.zh-cn.md
2017-03-20 11:20:04 +08:00
Milo Yip
3f78a026c7
Merge pull request #903 from shadeware/patch-1
...
fix typos in doc code
2017-03-20 11:18:56 +08:00
shadeware
a38104a165
fix typos in doc code
2017-03-19 03:03:36 +03:00
John Stiles
1391e42579
Merge pull request #3 from miloyip/master
...
Merge back
2017-03-17 10:26:47 -07:00
Milo Yip
e5635fb27f
Fix #899
2017-03-16 10:46:48 +08:00
Milo Yip
0bc856a747
Merge pull request #894 from belveder79/master
...
update to create config file which is independent from actual install…
2017-03-16 10:37:07 +08:00
Milo Yip
bba388b4fa
Merge pull request #896 from StilesCrisis/writer-flush-api
...
Writer flush api
2017-03-16 10:36:25 +08:00
Milo Yip
465fab45c1
Merge pull request #897 from StilesCrisis/issue-889-pretty-writer
...
Issue 889 pretty writer
2017-03-16 10:35:26 +08:00
John Stiles
d5d18cf694
Fix template length optimization issue in PrettyWriter
...
Missed PrettyWriter in the initial fix for Issue #889
2017-03-14 23:48:41 -07:00