Tatooine
concat.h
Go to the documentation of this file.
1#ifndef TATOOINE_PREPROCESSOR_CONCAT_H
2#define TATOOINE_PREPROCESSOR_CONCAT_H
3//==============================================================================
4#define TATOOINE_PP_CONCAT_(a, b) a##b
5#define TATOOINE_PP_CONCAT(a, b) TATOOINE_PP_CONCAT_(a, b)
6//==============================================================================
7#endif