libcarla/include/system/rpc/detail/constant.h

18 lines
269 B
C
Raw Permalink Normal View History

2024-10-18 13:19:59 +08:00
#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 */