Skip to content

Commit

Permalink
fixes bug
Browse files Browse the repository at this point in the history
  • Loading branch information
actboy168 committed May 20, 2024
1 parent 0a2172b commit fd45d68
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actboy168/setup-luamake@master
- run: sudo apt install binutils
- run: luamake -notest -sanitize
- run: luamake lua test/glibc-version.lua
- run: luamake test -v
Expand Down
5 changes: 3 additions & 2 deletions bee/crash/handler.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
# include <bee/crash/handler_linux.h>
#else
namespace bee::crash {
class handler {
class empty_handler {
public:
handler(const char* dump_path) noexcept {}
empty_handler(const char* dump_path) noexcept {}
};
using handler = empty_handler;
}
#endif

0 comments on commit fd45d68

Please sign in to comment.