7 lines
166 B
C++
7 lines
166 B
C++
#ifndef UTILS_TYPES_HPP_
|
|
#define UTILS_TYPES_HPP_
|
|
#define j(...) {{__VA_ARGS__}}
|
|
#define je(...) {__VA_ARGS__}
|
|
#define g(x, y) (std::get<x>(y))
|
|
#define RELEASE
|
|
#endif |