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

22 lines
298 B
C++

#pragma once
#ifndef BOOL_H_QLG6S5XZ
#define BOOL_H_QLG6S5XZ
#include "rpc/detail/constant.h"
namespace rpc {
namespace detail {
template<bool B>
using bool_ = constant<bool, B>;
using true_ = bool_<true>;
using false_ = bool_<false>;
}
}
#endif /* end of include guard: BOOL_H_QLG6S5XZ */