diff options
author | Even Rouault <even.rouault@spatialys.com> | 2019-11-04 23:28:33 +0100 |
---|---|---|
committer | Wouter van Oortmerssen <aardappel@gmail.com> | 2019-11-04 14:28:33 -0800 |
commit | 7b38aa71e62cfdbc4530b104226177529469f076 (patch) | |
tree | 63c0f052cd5e8dc35b082e064c171bf4a576ae96 /include | |
parent | 661bedd837f3c9c3ddff092e812159d3a3ebecdc (diff) | |
download | flatbuffers-7b38aa71e62cfdbc4530b104226177529469f076.tar.gz flatbuffers-7b38aa71e62cfdbc4530b104226177529469f076.tar.bz2 flatbuffers-7b38aa71e62cfdbc4530b104226177529469f076.zip |
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
```
Diffstat (limited to 'include')
-rw-r--r-- | include/flatbuffers/flatbuffers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/flatbuffers/flatbuffers.h b/include/flatbuffers/flatbuffers.h index fcf1f27a..250db7c3 100644 --- a/include/flatbuffers/flatbuffers.h +++ b/include/flatbuffers/flatbuffers.h @@ -1759,7 +1759,7 @@ class FlatBufferBuilder { /// `vector`. /// @tparam T The data type of the `std::vector` 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`. /// @return Returns a typed `Offset` into the serialized data indicating /// where the vector is stored. |