summaryrefslogtreecommitdiff
path: root/src/utils/cpp/json.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/cpp/json.hpp')
-rw-r--r--src/utils/cpp/json.hpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/utils/cpp/json.hpp b/src/utils/cpp/json.hpp
index 1fe4df3f..589a5884 100644
--- a/src/utils/cpp/json.hpp
+++ b/src/utils/cpp/json.hpp
@@ -50,7 +50,6 @@ auto ExtractValueAs(
namespace detail {
-// NOLINTNEXTLINE(misc-no-recursion)
[[nodiscard]] static inline auto IndentListsOnlyUntilDepth(
nlohmann::json const& json,
std::string const& indent,
@@ -89,7 +88,6 @@ namespace detail {
return json.dump();
}
-// NOLINTNEXTLINE(misc-no-recursion)
[[nodiscard]] static inline auto IndentOnlyUntilDepth(
nlohmann::json const& json,
std::string const& indent,
@@ -164,7 +162,6 @@ namespace detail {
}
// \brief Dump json, replacing subexpressions at the given depths by "*".
-// NOLINTNEXTLINE(misc-no-recursion)
[[nodiscard]] static inline auto TruncateJson(nlohmann::json const& json,
std::size_t depth)
-> std::string {