Tatooine
cat.h
Go to the documentation of this file.
1#ifndef TATOOINE_PREPROCESSOR_CAT_H
2#define TATOOINE_PREPROCESSOR_CAT_H
3//==============================================================================
4#define TATOOINE_PP_CAT(a, b) TATOOINE_PP_CAT_I(a, b)
5#define TATOOINE_PP_CAT_I(a, b) a##b
6//==============================================================================
7#endif