From 47b7cfbe8016ac7580895ea1979c8359aab50fff Mon Sep 17 00:00:00 2001 From: Miko <110693261+mikomikotaishi@users.noreply.github.com> Date: Thu, 21 May 2026 15:10:57 -0400 Subject: [PATCH 1/2] Fix missing newline necessary in docs website Signed-off-by: Miko <110693261+mikomikotaishi@users.noreply.github.com> --- docs/mkdocs/docs/features/modules.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/mkdocs/docs/features/modules.md b/docs/mkdocs/docs/features/modules.md index 6574a92218..8581aad9d2 100644 --- a/docs/mkdocs/docs/features/modules.md +++ b/docs/mkdocs/docs/features/modules.md @@ -28,6 +28,7 @@ It should be noted that as modules do not export macros, the `nlohmann.json` mod ## Exported symbols Only the following symbols are exported from `nlohmann.json`: + - `nlohmann::adl_serializer` - `nlohmann::basic_json` - `nlohmann::json` @@ -39,6 +40,7 @@ Only the following symbols are exported from `nlohmann.json`: - `nlohmann::literals::json_literals::operator""_json_pointer` The following specialisations of `std` symbols are also exported: + - `std::hash` - `std::less` - `std::swap` From 998abc084e65df58eab13319f535e7ff8a967de8 Mon Sep 17 00:00:00 2001 From: Miko <110693261+mikomikotaishi@users.noreply.github.com> Date: Thu, 21 May 2026 15:25:13 -0400 Subject: [PATCH 2/2] Remove std export mention, as it no longer applies Signed-off-by: Miko <110693261+mikomikotaishi@users.noreply.github.com> --- docs/mkdocs/docs/features/modules.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/mkdocs/docs/features/modules.md b/docs/mkdocs/docs/features/modules.md index 8581aad9d2..53dc2b36f8 100644 --- a/docs/mkdocs/docs/features/modules.md +++ b/docs/mkdocs/docs/features/modules.md @@ -38,9 +38,3 @@ Only the following symbols are exported from `nlohmann.json`: - `nlohmann::to_string` - `nlohmann::literals::json_literals::operator""_json` - `nlohmann::literals::json_literals::operator""_json_pointer` - -The following specialisations of `std` symbols are also exported: - -- `std::hash` -- `std::less` -- `std::swap`