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

@@ -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