Fix CI (again) (#4196)

This commit is contained in:
Niels Lohmann
2023-11-01 21:23:55 +01:00
committed by GitHub
parent 59da644db4
commit 0261bc04d3
12 changed files with 52 additions and 49 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> {}))
```
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).
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())
```
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

View File

@@ -68,7 +68,7 @@ constructor.
## See also
[List of exceptions](127.0.0.1:8000/home/exceptions/)
[List of exceptions](../../home/exceptions.md)
## 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
`==`, see [`operator==`](operator_eq.md).
- [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
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
@@ -88,7 +88,7 @@ The class satisfies the following concept requirements:
## 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
- [**json_pointer**](../json_pointer/index.md) - JSON Pointer implementation
- [**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
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

View File

@@ -68,7 +68,7 @@ replaced by calling [`std::abort`](https://en.cppreference.com/w/cpp/utility/pro
## See also
- [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

View File

@@ -245,7 +245,7 @@ integers, and between integers and floating-point values to integers. This beha
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.
!!! 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
```json
--8<-- "../../examples/meta.output"
--8<-- "examples/meta.output"
```
## Homebrew