File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 11// Note the second line of this file must ALWAYS be the git SHA, third line ALWAYS the git SHA update time
2- #define LLFIO_PREVIOUS_COMMIT_REF 7329b49e4b53055d1ce6b262d8005fff705911f3
3- #define LLFIO_PREVIOUS_COMMIT_DATE " 2025-12-17 12:42:18 +00:00"
4- #define LLFIO_PREVIOUS_COMMIT_UNIQUE 7329b49e
2+ #define LLFIO_PREVIOUS_COMMIT_REF 34abc7b82c5b3e1f141496c386a83d2c77fedcf9
3+ #define LLFIO_PREVIOUS_COMMIT_DATE " 2025-12-17 15:50:50 +00:00"
4+ #define LLFIO_PREVIOUS_COMMIT_UNIQUE 34abc7b8
Original file line number Diff line number Diff line change @@ -404,7 +404,12 @@ inline error make_status_code(LLFIO_V2_NAMESPACE::file_io_error e)
404404#if defined(_CPPUNWIND) || defined(__EXCEPTIONS)
405405 return error (in_place, e);
406406#else
407- return error (std::nothrow, e);
407+ error ret (std::nothrow, e);
408+ if (e.empty () != ret.empty ())
409+ {
410+ abort ();
411+ }
412+ return ret;
408413#endif
409414}
410415
You can’t perform that action at this time.
0 commit comments