mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
28f7c510a5
rename decimal_to_int -> ascii_to_int
13 lines
274 B
C++
13 lines
274 B
C++
#ifndef SPROUT_PREPROCESSOR_CAT_HPP
|
|
#define SPROUT_PREPROCESSOR_CAT_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
//
|
|
// SPROUT_PP_CAT
|
|
//
|
|
#define SPROUT_PP_CAT(a, b) SPROUT_PP_CAT_I(a, b)
|
|
#define SPROUT_PP_CAT_I(a, b) a ## b
|
|
|
|
#endif // #ifndef SPROUT_PREPROCESSOR_CAT_HPP
|
|
|