8 lines
189 B
C++
8 lines
189 B
C++
#ifndef CTTI_DETAIL_PREPROCESSOR_HPP
|
|
#define CTTI_DETAIL_PREPROCESSOR_HPP
|
|
|
|
#define CTTI_PP_STR_IMPL(x) #x
|
|
#define CTTI_PP_STR(x) CTTI_PP_STR_IMPL(x)
|
|
|
|
#endif // CTTI_DETAIL_PREPROCESSOR_HPP
|