🚨 fix warnings

This commit is contained in:
Niels Lohmann 2023-11-01 19:45:56 +01:00
parent b5d5d0bc5f
commit 76062fdc35
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69
10 changed files with 15 additions and 14 deletions

View File

@ -14,7 +14,7 @@ noexcept(::nlohmann::from_json(std::forward<BasicJsonType>(j), detail::identity_
-> decltype(::nlohmann::from_json(std::forward<BasicJsonType>(j), detail::identity_tag<TargetType> {})) -> decltype(::nlohmann::from_json(std::forward<BasicJsonType>(j), detail::identity_tag<TargetType> {}))
``` ```
This function is usually called by the [`get()`](../basic_json/get.md) function of the [basic_json](../basic_json) This function is usually called by the [`get()`](../basic_json/get.md) function of the [basic_json](../basic_json/index.md)
class (either explicitly or via the conversion operators). class (either explicitly or via the conversion operators).
1. This function is chosen for default-constructible value types. 1. This function is chosen for default-constructible value types.

View File

@ -7,7 +7,7 @@ static auto to_json(BasicJsonType& j, TargetType && val) noexcept(
-> decltype(::nlohmann::to_json(j, std::forward<TargetType>(val)), void()) -> decltype(::nlohmann::to_json(j, std::forward<TargetType>(val)), void())
``` ```
This function is usually called by the constructors of the [basic_json](../basic_json) class. This function is usually called by the constructors of the [basic_json](../basic_json/index.md) class.
## Parameters ## Parameters

View File

@ -68,7 +68,7 @@ constructor.
## See also ## See also
[List of exceptions](127.0.0.1:8000/home/exceptions/) [List of exceptions](../../home/exceptions.md)
## Version history ## Version history

View File

@ -73,7 +73,7 @@ The class satisfies the following concept requirements:
- [EqualityComparable](https://en.cppreference.com/w/cpp/named_req/EqualityComparable): JSON values can be compared with - [EqualityComparable](https://en.cppreference.com/w/cpp/named_req/EqualityComparable): JSON values can be compared with
`==`, see [`operator==`](operator_eq.md). `==`, see [`operator==`](operator_eq.md).
- [LessThanComparable](https://en.cppreference.com/w/cpp/named_req/LessThanComparable): JSON values can be compared with - [LessThanComparable](https://en.cppreference.com/w/cpp/named_req/LessThanComparable): JSON values can be compared with
`<`, see [`operator<`](operator_le). `<`, see [`operator<`](operator_le.md).
- [Swappable](https://en.cppreference.com/w/cpp/named_req/Swappable): Any JSON lvalue or rvalue of can be swapped with - [Swappable](https://en.cppreference.com/w/cpp/named_req/Swappable): Any JSON lvalue or rvalue of can be swapped with
any lvalue or rvalue of other compatible types, using unqualified function `swap`. any lvalue or rvalue of other compatible types, using unqualified function `swap`.
- [NullablePointer](https://en.cppreference.com/w/cpp/named_req/NullablePointer): JSON values can be compared against - [NullablePointer](https://en.cppreference.com/w/cpp/named_req/NullablePointer): JSON values can be compared against
@ -88,7 +88,7 @@ The class satisfies the following concept requirements:
## Member types ## Member types
- [**adl_serializer**](../adl_serializer) - the default serializer - [**adl_serializer**](../adl_serializer/index.md) - the default serializer
- [**value_t**](value_t.md) - the JSON type enumeration - [**value_t**](value_t.md) - the JSON type enumeration
- [**json_pointer**](../json_pointer/index.md) - JSON Pointer implementation - [**json_pointer**](../json_pointer/index.md) - JSON Pointer implementation
- [**json_serializer**](json_serializer.md) - type of the serializer to for conversions from/to JSON - [**json_serializer**](json_serializer.md) - type of the serializer to for conversions from/to JSON

View File

@ -17,7 +17,7 @@ using json_serializer = JSONSerializer<T, SFINAE>;
#### Default type #### Default type
The default values for `json_serializer` is [`adl_serializer`](../adl_serializer). The default values for `json_serializer` is [`adl_serializer`](../adl_serializer/index.md).
## Examples ## Examples

View File

@ -68,7 +68,7 @@ replaced by calling [`std::abort`](https://en.cppreference.com/w/cpp/utility/pro
## See also ## See also
- [Switch off exceptions](../../home/exceptions.md#switch-off-exceptions) for more information how to switch off exceptions - [Switch off exceptions](../../home/exceptions.md#switch-off-exceptions) for more information how to switch off exceptions
- [JSON_NOEXCEPTION](JSON_NOEXCEPTION) - switch off exceptions - [JSON_NOEXCEPTION](json_noexception.md) - switch off exceptions
## Version history ## Version history

View File

@ -245,7 +245,7 @@ integers, and between integers and floating-point values to integers. This beha
The rationale is twofold: The rationale is twofold:
1. JSON does not define a number type or precision (see [#json-specification](above)). 1. JSON does not define a number type or precision (see above).
2. C++ also allows to silently convert between number types. 2. C++ also allows to silently convert between number types.
!!! success "Conditional number conversion" !!! success "Conditional number conversion"

View File

@ -9,7 +9,7 @@ Throughout this page, we will describe how to compile the example file `example.
When executed, this program should create output similar to When executed, this program should create output similar to
```json ```json
--8<-- "../../examples/meta.output" --8<-- "examples/meta.output"
``` ```
## Homebrew ## Homebrew

View File

@ -9,7 +9,7 @@ repo_url: https://github.com/nlohmann/json
edit_uri: edit/develop/docs/mkdocs/docs edit_uri: edit/develop/docs/mkdocs/docs
# Copyright # Copyright
copyright: Copyright &copy; 2013 - 2022 Niels Lohmann copyright: Copyright &copy; 2013 - 2023 Niels Lohmann
# Configuration # Configuration
theme: theme:
@ -270,6 +270,7 @@ nav:
- 'JSON_HAS_EXPERIMENTAL_FILESYSTEM': api/macros/json_has_filesystem.md - 'JSON_HAS_EXPERIMENTAL_FILESYSTEM': api/macros/json_has_filesystem.md
- 'JSON_HAS_FILESYSTEM': api/macros/json_has_filesystem.md - 'JSON_HAS_FILESYSTEM': api/macros/json_has_filesystem.md
- 'JSON_HAS_RANGES': api/macros/json_has_ranges.md - 'JSON_HAS_RANGES': api/macros/json_has_ranges.md
- 'JSON_HAS_STATIC_RTTI': api/macros/json_has_static_rtti.md
- 'JSON_HAS_THREE_WAY_COMPARISON': api/macros/json_has_three_way_comparison.md - 'JSON_HAS_THREE_WAY_COMPARISON': api/macros/json_has_three_way_comparison.md
- 'JSON_NOEXCEPTION': api/macros/json_noexception.md - 'JSON_NOEXCEPTION': api/macros/json_noexception.md
- 'JSON_NO_IO': api/macros/json_no_io.md - 'JSON_NO_IO': api/macros/json_no_io.md
@ -325,8 +326,8 @@ markdown_extensions:
- pymdownx.critic - pymdownx.critic
- pymdownx.details - pymdownx.details
- pymdownx.emoji: - pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.inlinehilite - pymdownx.inlinehilite
- pymdownx.magiclink - pymdownx.magiclink
- pymdownx.mark - pymdownx.mark

View File

@ -22,7 +22,7 @@ MarkupSafe==2.1.3
mergedeep==1.3.4 mergedeep==1.3.4
mkdocs==1.5.3 mkdocs==1.5.3
mkdocs-git-revision-date-localized-plugin==1.2.1 mkdocs-git-revision-date-localized-plugin==1.2.1
mkdocs-material==8.5.11 mkdocs-material==9.4.7
mkdocs-material-extensions==1.3 mkdocs-material-extensions==1.3
mkdocs-minify-plugin==0.7.1 mkdocs-minify-plugin==0.7.1
mkdocs-redirects==1.2.1 mkdocs-redirects==1.2.1
@ -32,7 +32,7 @@ packaging==23.2
plantuml==0.3.0 plantuml==0.3.0
plantuml-markdown==3.9.2 plantuml-markdown==3.9.2
Pygments==2.16.1 Pygments==2.16.1
pymdown-extensions==9.9 pymdown-extensions==10.3.1
pyparsing==3.1.1 pyparsing==3.1.1
python-dateutil==2.8.2 python-dateutil==2.8.2
pytz==2023.3.post1 pytz==2023.3.post1