Files
UnrealEngine/Engine/Source/ThirdParty/rpclib/2.2.1/include/rpc/detail/not.h
2025-05-18 13:04:45 +08: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 */