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

18 lines
235 B
C
Raw Normal View History

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