Files
UnrealEngine/Engine/Source/ThirdParty/rpclib/2.2.1/include/rpc/detail/not.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

18 lines
235 B
C++

#pragma once
#ifndef NOT_H_0MEGQWII
#define NOT_H_0MEGQWII
#include "rpc/detail/bool.h"
namespace rpc {
namespace detail {
template<typename B>
using not_ = bool_<!B::value>;
}
}
#endif /* end of include guard: NOT_H_0MEGQWII */