ciabatta/inc/_macros.h

14 lines
207 B
C
Raw Normal View History

2022-06-02 23:41:48 +00:00
#pragma once
#define _str_(x) #x
#define _str(x) _str_(x)
#if !defined(_func)
#if defined(_compiler_msvc)
#define _func __FUNCTION__
#else
#define _func __func__
#endif
#endif