1
0
mirror of synced 2024-12-13 08:21:07 +01:00
ImHex/lib/libimhex/include/hex/helpers/intrinsics.hpp

11 lines
147 B
C++
Raw Normal View History

#pragma once
#include <hex/helpers/concepts.hpp>
namespace hex {
[[noreturn]] void unreachable() {
__builtin_unreachable();
}
}