SPROUT_CONFIG_SUPPORT_TEMPORARY_CONTAINER_ITERATION をデフォルトで有効に変更

sprout/type/string.hpp 追加
This commit is contained in:
bolero-MURAKAMI 2012-02-08 23:39:36 +09:00
parent 86073fea83
commit 231910c863
43 changed files with 4816 additions and 16 deletions

View file

@ -0,0 +1,14 @@
#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