Repository :
https://github.com/FarGroup/FarManager
On branch : master
Link :
https://github.com/FarGroup/FarManager/commit/26ce834ed6aaf6ce4d07fb54fd404bdeffe1485e
>---------------------------------------------------------------
commit 26ce834ed6aaf6ce4d07fb54fd404bdeffe1485e
Author: Alex Alabuzhev <
alab...@gmail.com>
Date: Tue Jun 16 23:14:05 2026 +0100
Fix build again
>---------------------------------------------------------------
26ce834ed6aaf6ce4d07fb54fd404bdeffe1485e
far/codepage.hpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/far/codepage.hpp b/far/codepage.hpp
index 620385bf1..5fa49dee1 100644
--- a/far/codepage.hpp
+++ b/far/codepage.hpp
@@ -55,7 +55,7 @@ namespace encoding::codepage
[[nodiscard]] inline uintptr_t ansi() { return detail::ansi::id(); }
[[nodiscard]] inline uintptr_t oem() { return detail::oem::id(); }
- [[nodiscard]] inline uintptr_t is_system_utf8();
+ [[nodiscard]] uintptr_t is_system_utf8();
// Rule of thumb: everywhere a codepage is exposed to the user, use real_ansi() and real_oem() instead of ansi() and oem().
// Everywhere a codepage is used internally, e.g. for communication with the OS, plugins etc., use encoding::ansi::get_* and encoding::oem::get_* functions.