aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/deps/rpclib/include/rpc/detail/constant.h
blob: 1c373b3a21afc472a7ce891479787d550c15ffb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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 */