Skip to content

Commit aa1077c

Browse files
committed
upd
1 parent 34abc7b commit aa1077c

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

include/llfio/revision.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

include/llfio/v2.0/status_code.hpp

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)