Repository :
https://github.com/FarGroup/FarManager
On branch : master
Link :
https://github.com/FarGroup/FarManager/commit/c6251113867699756056862f84f53988b1f5c312
>---------------------------------------------------------------
commit c6251113867699756056862f84f53988b1f5c312
Author: Alex Alabuzhev <
alab...@gmail.com>
Date: Sun Jan 18 00:02:36 2026 +0000
Fix build
>---------------------------------------------------------------
c6251113867699756056862f84f53988b1f5c312
far/exception_handler.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/far/exception_handler.cpp b/far/exception_handler.cpp
index 1f6858f85..7e8a85a0c 100644
--- a/far/exception_handler.cpp
+++ b/far/exception_handler.cpp
@@ -2404,7 +2404,6 @@ constexpr auto real_wassert = _wassert;
WARNING_PUSH()
WARNING_DISABLE_MSC(4273) // 'function': inconsistent dll linkage
void far_assert(wchar_t const* const Message, wchar_t const* const File, unsigned const Line)
-WARNING_POP()
{
switch (assert_handler_impl(Message, { encoding::utf8::get_bytes(File).c_str(), "assert", Line }))
{
@@ -2419,6 +2418,7 @@ WARNING_POP()
break;
}
}
+WARNING_POP()
static LONG NTAPI vectored_exception_handler_impl(EXCEPTION_POINTERS* const Pointers)
{