1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +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
*/
#ifndef XTSTR
#define _XTSTR(x) # x
#define XTSTR(x) _XTSTR(x)
# ifndef DOXYGEN
# define _XTSTR(x) # x
# endif /* DOXYGEN */
# define XTSTR(x) _XTSTR(x)
#endif /* XTSTR */
#ifdef __cplusplus