mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
15 lines
303 B
C++
15 lines
303 B
C++
|
#ifndef SPROUT_PREPROCESSOR_STRINGIZE_HPP
|
||
|
#define SPROUT_PREPROCESSOR_STRINGIZE_HPP
|
||
|
|
||
|
#include <sprout/config.hpp>
|
||
|
|
||
|
#define SPROUT_PP_STRINGIZE_I(text) #text
|
||
|
|
||
|
//
|
||
|
// SPROUT_PP_STRINGIZE
|
||
|
//
|
||
|
#define SPROUT_PP_STRINGIZE(text) SPROUT_PP_STRINGIZE_I(text)
|
||
|
|
||
|
#endif // #ifndef SPROUT_PREPROCESSOR_STRINGIZE_HPP
|
||
|
|