Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
json
Project
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
json
Commits
33df3250
Commit
33df3250
authored
Oct 21, 2017
by
Niels Lohmann
Committed by
GitHub
Oct 21, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #793 from sonulohani/develop
Error : 'identifier "size_t" is undefined' in linux
parents
2e281ba6
92da3348
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
json.hpp
src/json.hpp
+1
-1
No files found.
src/json.hpp
View file @
33df3250
...
...
@@ -1544,7 +1544,7 @@ class input_buffer_adapter : public input_adapter_protocol
std
::
string
read
(
std
::
size_t
offset
,
std
::
size_t
length
)
override
{
// avoid reading too many characters
const
auto
max_length
=
static_cast
<
size_t
>
(
limit
-
start
);
const
auto
max_length
=
static_cast
<
s
td
::
s
ize_t
>
(
limit
-
start
);
return
std
::
string
(
start
+
offset
,
(
std
::
min
)(
length
,
max_length
-
offset
));
}
...
...
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