Commit 7b38aa71 authored by Even Rouault's avatar Even Rouault Committed by Wouter van Oortmerssen

flatbuffers.h: fix documentation warning (#5607)

Fixes following clang -Wdocumentation warning:
```
flatbuffers.h:1762:17: error: parameter ']' not found in the function declaration [-Werror,-Wdocumentation]
  /// @param[in]] v A const reference to the `std::vector` of structs to
```
parent 661bedd8
...@@ -1759,7 +1759,7 @@ class FlatBufferBuilder { ...@@ -1759,7 +1759,7 @@ class FlatBufferBuilder {
/// `vector`. /// `vector`.
/// @tparam T The data type of the `std::vector` struct elements. /// @tparam T The data type of the `std::vector` struct elements.
/// @tparam S The data type of the `std::vector` native struct elements. /// @tparam S The data type of the `std::vector` native struct elements.
/// @param[in]] v A const reference to the `std::vector` of structs to /// @param[in] v A const reference to the `std::vector` of structs to
/// serialize into the buffer as a `vector`. /// serialize into the buffer as a `vector`.
/// @return Returns a typed `Offset` into the serialized data indicating /// @return Returns a typed `Offset` into the serialized data indicating
/// where the vector is stored. /// where the vector is stored.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment