mirror of
https://github.com/nlohmann/json.git
synced 2025-08-09 05:22:48 +03:00
🔨 add NLOHMANN_JSON prefix and undef macros
This commit is contained in:
@@ -110,7 +110,7 @@ class serializer
|
||||
|
||||
// variable to hold indentation for recursive calls
|
||||
const auto new_indent = current_indent + indent_step;
|
||||
if (HEDLEY_UNLIKELY(indent_string.size() < new_indent))
|
||||
if (NLOHMANN_JSON_HEDLEY_UNLIKELY(indent_string.size() < new_indent))
|
||||
{
|
||||
indent_string.resize(indent_string.size() * 2, ' ');
|
||||
}
|
||||
@@ -183,7 +183,7 @@ class serializer
|
||||
|
||||
// variable to hold indentation for recursive calls
|
||||
const auto new_indent = current_indent + indent_step;
|
||||
if (HEDLEY_UNLIKELY(indent_string.size() < new_indent))
|
||||
if (NLOHMANN_JSON_HEDLEY_UNLIKELY(indent_string.size() < new_indent))
|
||||
{
|
||||
indent_string.resize(indent_string.size() * 2, ' ');
|
||||
}
|
||||
@@ -498,7 +498,7 @@ class serializer
|
||||
}
|
||||
|
||||
// we finished processing the string
|
||||
if (HEDLEY_LIKELY(state == UTF8_ACCEPT))
|
||||
if (NLOHMANN_JSON_HEDLEY_LIKELY(state == UTF8_ACCEPT))
|
||||
{
|
||||
// write buffer
|
||||
if (bytes > 0)
|
||||
|
Reference in New Issue
Block a user