This website requires JavaScript.
Explore
Help
Register
Sign In
Rooba
/
ImHex
mirror of
https://github.com/WerWolv/ImHex.git
Watch
1
Star
1
Fork
You've already forked ImHex
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
65e2f1b5af
ImHex
/
lib
/
libimhex
/
include
/
hex
/
helpers
/
intrinsics.hpp
9 lines
96 B
C++
Raw
Normal View
History
Unescape
Escape
sys: Replace __builtin_unreachable() with hex::unreachable()
2022-03-22 08:08:34 +00:00
#
pragma once
namespace
hex
{
impr: General code cleanup
2023-11-10 19:47:08 +00:00
void
unused
(
auto
&
&
.
.
.
x
)
{
sys: Enable -Wall, -Wextra, -Werror and fix all warnings on all Platforms (#483) * sys: Make ImHex compile with -Wall -Wextra -Werror * sys: Fixed various build errors on Linux * sys: Explicitly ignore return value of `system` function * sys: More fixes for the warnings GitHub Actions enables somehow * sys: More fixes * sys: Remove -Werror again to see all GitHub Actions warnings * sys: Hopefully fixed all remaining warnings * sys: Added back -Werror * git: Change windows icon in GitHub Actions
2022-03-26 23:01:28 +00:00
(
(
void
)
x
,
.
.
.
)
;
}
sys: Replace __builtin_unreachable() with hex::unreachable()
2022-03-22 08:08:34 +00:00
}