ciabatta/inc/_macros.h

16 lines
233 B
C

#pragma once
#define _str_(x) #x
#define _str(x) _str_(x)
#define _con(a,b) a ## b
#if !defined(_func)
#if defined(_compiler_msvc)
#define _func __FUNCTION__
#else
#define _func __func__
#endif
#endif