From fb258164ae417e45fa02bc27dd328b3a4a37b50f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 2 Jan 2018 15:17:58 +0100 Subject: [PATCH] Fix Doxygen warnings in latest version. Actually, now it is finally able to link to variadic funcs. --- src/Magnum/Mesh.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Magnum/Mesh.h b/src/Magnum/Mesh.h index af651e14a..4e6e4f005 100644 --- a/src/Magnum/Mesh.h +++ b/src/Magnum/Mesh.h @@ -816,7 +816,7 @@ class MAGNUM_EXPORT Mesh: public AbstractObject { * @brief Add buffer with dynamic vertex attributes for use with given shader * @return Reference to self (for method chaining) * - * Equivalent to @ref addVertexBuffer(Buffer&, GLintptr, const T&...) + * Equivalent to @ref addVertexBuffer(Buffer&, GLintptr, const T&... attributes) * but with the possibility to fully specify the attribute properties * at runtime, including base type and location. See * @ref Mesh-configuration-dynamic "class documentation" for usage @@ -830,7 +830,7 @@ class MAGNUM_EXPORT Mesh: public AbstractObject { * @brief Add buffer with dynamic vertex attributes for use with given shader * @return Reference to self (for method chaining) * - * Equivalent to @ref addVertexBufferInstanced(Buffer&, UnsignedInt, GLintptr, const T&...) + * Equivalent to @ref addVertexBufferInstanced(Buffer&, UnsignedInt, GLintptr, const T&... attributes) * but with the possibility to fully specify the attribute properties * at runtime, including base type and location. See * @ref Mesh-configuration-dynamic "class documentation" for usage