sparkle/libs/utils/types.hpp

7 lines
166 B
C++
Raw Normal View History

2024-12-31 02:20:56 +05:00
#ifndef UTILS_TYPES_HPP_
#define UTILS_TYPES_HPP_
#define j(...) {{__VA_ARGS__}}
#define je(...) {__VA_ARGS__}
#define g(x, y) (std::get<x>(y))
2025-01-20 03:09:27 +05:00
#define RELEASE
2024-12-31 02:20:56 +05:00
#endif