Tor 0.4.9.8
Loading...
Searching...
No Matches
unreachable.h
1#ifndef UNREACHABLE
2#ifdef __GNUC__
3#define UNREACHABLE __builtin_unreachable()
4#elif _MSC_VER
5#define UNREACHABLE __assume(0)
6#else
7#define UNREACHABLE
8#endif
9#endif