From bec87b9d32ed2e4787c366d51e325623fd8daad5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 16 Nov 2014 21:18:10 +0100 Subject: [PATCH] Properly reference operator. This wasn't actually Doxygen's fault. --- src/Magnum/Resource.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Magnum/Resource.h b/src/Magnum/Resource.h index 87f81490e..a7f526024 100644 --- a/src/Magnum/Resource.h +++ b/src/Magnum/Resource.h @@ -201,10 +201,10 @@ class Resource { #ifdef MAGNUM_BUILD_DEPRECATED /** * @overload - * @deprecated Use the explicit @ref operator*() or operator->() - * instead. Implicit conversion is no longer allowed if it might - * throw an assertion. - * @todoc Explicit reference when Doxygen can handle operator->() + * @deprecated Use the explicit @ref Magnum::Resource::operator*() "operator*()" + * or @ref Magnum::Resource::operator->() "operator->()" instead. + * Implicit conversion is no longer allowed if it might throw an + * assertion. */ CORRADE_DEPRECATED("use operator*() or operator->() instead") operator U&() { return **this; } #endif