Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

18 lines
269 B
C++

#pragma once
#ifndef CONSTANT_H_5CXUYJEW
#define CONSTANT_H_5CXUYJEW
#include <type_traits>
namespace rpc {
namespace detail {
template<typename T, T I>
struct constant : std::integral_constant<T, I> {};
}
}
#endif /* end of include guard: CONSTANT_H_5CXUYJEW */