[build] Upgrade to Doxygen 1.15.0 (#8328)

This commit is contained in:
Tyler Veness
2025-11-02 05:18:58 -08:00
committed by GitHub
parent 5eb3140f69
commit 3bdaeac3e1
6 changed files with 32 additions and 23 deletions

View File

@@ -136,7 +136,7 @@ class ProtoOutputStream {
/**
* Constructs a nanopb ostream from a buffer.
*
* This constructor will cause `Encode` to call pb_encode_ex`
* This constructor will cause `Encode` to call `pb_encode_ex`
*
* @param[in] out the stream buffer
*/
@@ -153,7 +153,7 @@ class ProtoOutputStream {
/**
* Constructs a nanopb ostream from a buffer.
*
* This constructor will cause `Encode` to call pb_encode_ex`
* This constructor will cause `Encode` to call `pb_encode_ex`
*
* @param[in] out the stream buffer
*/
@@ -171,7 +171,7 @@ class ProtoOutputStream {
* Constructs a empty nanopb stream. You must fill out the stream
* returned from `Stream` before calling Encode.
*
* This constructor exists to cause `Encode` to call pb_encode_ex`,
* This constructor exists to cause `Encode` to call `pb_encode_ex`,
* but allow manipulating the stream manually.
*/
ProtoOutputStream()
@@ -274,9 +274,9 @@ concept ProtobufSerializable = requires(
* Specifies that a type is capable of in-place protobuf deserialization.
*
* In addition to meeting ProtobufSerializable, implementations must define a
* wpi::Protobuf<T> static member
* - bool UnpackInto(T*, wpi::ProtoInputStream<T>&)` to update the
* pointed-to T with the contents of the message.
* wpi::Protobuf<T> static member -
* `bool UnpackInto(T*, wpi::ProtoInputStream<T>&)` to update the pointed-to T
* with the contents of the message.
*/
template <typename T>
concept MutableProtobufSerializable =

View File

@@ -1857,7 +1857,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
@brief get a value (implicit)
Implicit type conversion between the JSON value and a compatible value.
The call is realized by calling @ref get() const.
The call is realized by calling @ref get().
@tparam ValueType non-pointer type compatible to the JSON value, for
instance `int` for JSON integer numbers, `bool` for JSON booleans, or