Algorithms/source/templates.h

7 lines
110 B
C
Raw Normal View History

#ifndef TEMPLATES_H
#define TEMPLATES_H
#define CONCAT(X,Y) X##_##Y
#define TEMPLATE(X,Y) CONCAT(X,Y)
#endif