core/atomic.h: fix doxygen to get rid of warning

This commit is contained in:
Hauke Petersen 2015-12-02 11:14:07 +01:00
parent f0e5413f3a
commit 0f43fb9023

View File

@ -29,7 +29,7 @@ extern "C" {
* @brief Integer variable for use in atomic counters.
*/
typedef struct atomic_int {
volatile int value;
volatile int value; /**< the actual value */
} atomic_int_t;
/**