mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 05:27:41 -05:00
impr: Remove hex::format, improve format and logging type safety
This commit is contained in:
@@ -43,7 +43,7 @@ namespace hex::plugin::builtin {
|
||||
|
||||
ImGuiExt::Header("hex.builtin.tools.permissions.absolute"_lang);
|
||||
|
||||
auto result = hex::format("{}{}{}{}",
|
||||
auto result = fmt::format("{}{}{}{}",
|
||||
(setuid << 2) | (setgid << 1) | (sticky << 0),
|
||||
(r[0] << 2) | (w[0] << 1) | (x[0] << 0),
|
||||
(r[1] << 2) | (w[1] << 1) | (x[1] << 0),
|
||||
|
||||
Reference in New Issue
Block a user