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