From 7b38aa71e62cfdbc4530b104226177529469f076 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Mon, 4 Nov 2019 23:28:33 +0100 Subject: 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 ``` --- include/flatbuffers/flatbuffers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') 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. -- cgit v1.2.3