Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: STM32L452_Nucleo_ticker
Fork of mbed-dev by
Diff: platform/FunctionPointer.h
- Revision:
 - 167:e84263d55307
 - Parent:
 - 160:d5399cc887bb
 - Child:
 - 178:79309dc6340a
 
--- a/platform/FunctionPointer.h	Thu Jun 08 15:02:37 2017 +0100
+++ b/platform/FunctionPointer.h	Wed Jun 21 17:46:44 2017 +0100
@@ -23,11 +23,13 @@
 
 namespace mbed {
 /** \addtogroup platform */
-/** @{*/
 
 
 // Declarations for backwards compatibility
 // To be foward compatible, code should adopt the Callback class
+/**
+ * @ingroup platform
+ */
 template <typename R, typename A1>
 class FunctionPointerArg1 : public Callback<R(A1)> {
 public:
@@ -59,6 +61,9 @@
     }
 };
 
+/**
+ * @ingroup platform
+ */
 template <typename R>
 class FunctionPointerArg1<R, void> : public Callback<R()> {
 public:
@@ -96,5 +101,3 @@
 } // namespace mbed
 
 #endif
-
-/** @}*/
    