11 lines
147 B
C++
11 lines
147 B
C++
|
#pragma once
|
||
|
|
||
|
#include <hex/helpers/concepts.hpp>
|
||
|
|
||
|
namespace hex {
|
||
|
|
||
|
[[noreturn]] void unreachable() {
|
||
|
__builtin_unreachable();
|
||
|
}
|
||
|
|
||
|
}
|