mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-02-09 09:53:57 +00:00
14 lines
276 B
C++
14 lines
276 B
C++
#ifndef SPROUT_PREPROCESSOR_CAT_HPP
|
|
#define SPROUT_PREPROCESSOR_CAT_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#define SPROUT_PP_CAT_I(a, b) a ## b
|
|
|
|
//
|
|
// SPROUT_PP_CAT
|
|
//
|
|
#define SPROUT_PP_CAT(a, b) SPROUT_PP_CAT_I(a, b)
|
|
|
|
#endif // #ifndef SPROUT_PREPROCESSOR_CAT_HPP
|
|
|