dxx-rebirth/similar
Kp 71ed303c27 Fix clang editor medwall build
The existing code checks that w.m_ptr is not nullptr before using it.
clang's flow analysis is unable to prove that w.m_ptr does not become
nullptr after it was first checked, even though `w` is const.  This
causes clang to include calls to null_pointer_exception::report, which
is not instantiated for wall.  That in turn causes a link error.

Rewrite the code to let clang see that the value tested is the value
used, and that no nullptr dereference can happen here.
2021-09-04 12:17:14 +00:00
..
2d Change ogl_font_choose_size to return width/height 2021-09-04 12:17:14 +00:00
3d Move g3 instance contexts onto the stack 2021-09-04 12:17:14 +00:00
arch Switch callers to unchecked_partial_range(range) where possible 2021-09-04 12:17:14 +00:00
editor Fix clang editor medwall build 2021-09-04 12:17:14 +00:00
main Move g3 instance contexts onto the stack 2021-09-04 12:17:14 +00:00
misc Improve error reporting for PHYSFSX_openWriteBuffered 2021-07-25 23:00:56 +00:00