Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
396f64a0
Commit
396f64a0
authored
Mar 02, 2015
by
Aaron Burghardt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replaced leading tabs with spaces (4 per tab).
parent
87746280
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
27 deletions
+27
-27
src/json.hpp.re2c
src/json.hpp.re2c
+27
-27
No files found.
src/json.hpp.re2c
View file @
396f64a0
...
@@ -3052,18 +3052,18 @@ class basic_json
...
@@ -3052,18 +3052,18 @@ class basic_json
using lexer_char_t = unsigned char;
using lexer_char_t = unsigned char;
/// constructor with a given buffer
/// constructor with a given buffer
inline lexer(const string_t& s) noexcept
inline lexer(const string_t& s) noexcept
: m_buffer(s), m_stream(nullptr)
: m_buffer(s), m_stream(nullptr)
{
{
m_content = reinterpret_cast<const lexer_char_t*>(s.c_str());
m_content = reinterpret_cast<const lexer_char_t*>(s.c_str());
m_start = m_cursor = m_content;
m_start = m_cursor = m_content;
m_limit = m_content + s.size();
m_limit = m_content + s.size();
}
}
inline lexer(std::istream* s) noexcept
inline lexer(std::istream* s) noexcept
: m_stream(s)
: m_stream(s)
{
{
getline(*m_stream, m_buffer);
getline(*m_stream, m_buffer);
m_content = reinterpret_cast<const lexer_char_t*>(m_buffer.c_str());
m_content = reinterpret_cast<const lexer_char_t*>(m_buffer.c_str());
m_start = m_cursor = m_content;
m_start = m_cursor = m_content;
m_limit = m_content + m_buffer.size();
m_limit = m_content + m_buffer.size();
}
}
...
@@ -3259,26 +3259,26 @@ class basic_json
...
@@ -3259,26 +3259,26 @@ class basic_json
}
}
/// append data from the stream to the internal buffer
/// append data from the stream to the internal buffer
void yyfill() noexcept
void yyfill() noexcept
{
{
if (not m_stream or not *m_stream) return;
if (not m_stream or not *m_stream) return;
ssize_t offset_start = m_start - m_content;
ssize_t offset_start = m_start - m_content;
ssize_t offset_marker = m_marker - m_start;
ssize_t offset_marker = m_marker - m_start;
ssize_t offset_cursor = m_cursor - m_start;
ssize_t offset_cursor = m_cursor - m_start;
m_buffer.erase(0, offset_start);
m_buffer.erase(0, offset_start);
std::string line;
std::string line;
std::getline(*m_stream, line);
std::getline(*m_stream, line);
m_buffer += line;
m_buffer += line;
m_content = reinterpret_cast<const lexer_char_t*>(m_buffer.c_str());
m_content = reinterpret_cast<const lexer_char_t*>(m_buffer.c_str());
m_start = m_content;
m_start = m_content;
m_marker = m_start + offset_marker;
m_marker = m_start + offset_marker;
m_cursor = m_start + offset_cursor;
m_cursor = m_start + offset_cursor;
m_limit = m_start + m_buffer.size() - 1;
m_limit = m_start + m_buffer.size() - 1;
}
}
/// return string representation of last read token
/// return string representation of last read token
inline string_t get_token() const noexcept
inline string_t get_token() const noexcept
...
...
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