mirror of
https://github.com/nlohmann/json.git
synced 2025-07-13 20:21:48 +03:00
try to replace std::ptrdiff_t with auto (for #204)
This commit is contained in:
@ -7280,9 +7280,9 @@ class basic_json
|
||||
return;
|
||||
}
|
||||
|
||||
const std::ptrdiff_t offset_start = m_start - m_content;
|
||||
const std::ptrdiff_t offset_marker = m_marker - m_start;
|
||||
const std::ptrdiff_t offset_cursor = m_cursor - m_start;
|
||||
const auto offset_start = m_start - m_content;
|
||||
const auto offset_marker = m_marker - m_start;
|
||||
const auto offset_cursor = m_cursor - m_start;
|
||||
|
||||
m_buffer.erase(0, static_cast<size_t>(offset_start));
|
||||
std::string line;
|
||||
|
Reference in New Issue
Block a user