1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

core/lib: hide _XTSTR() from doxygen

This commit is contained in:
Kaspar Schleiser 2022-03-10 10:12:44 +01:00
parent 003d64dd6c
commit d248b2d785

View File

@ -31,8 +31,10 @@ extern "C" {
* @brief A macro to return the string respresentation of x * @brief A macro to return the string respresentation of x
*/ */
#ifndef XTSTR #ifndef XTSTR
#define _XTSTR(x) # x # ifndef DOXYGEN
#define XTSTR(x) _XTSTR(x) # define _XTSTR(x) # x
# endif /* DOXYGEN */
# define XTSTR(x) _XTSTR(x)
#endif /* XTSTR */ #endif /* XTSTR */
#ifdef __cplusplus #ifdef __cplusplus