Skip to content

Commit

Permalink
CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mjp41 committed Nov 21, 2024
1 parent 1023ffb commit 9712908
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/rt/debug/harness.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ extern "C" inline void dump_flight_recorder()
{ \
printf("Failed %s:%d - check(%s)\n", __FILE__, __LINE__, #x); \
fflush(stdout); \
abort(); \
exit(1); \
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/rt/ds/wrapindex.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class WrapIndex
index = N - 1;
else
index--;
return result;;
return result;
}

operator size_t() const
Expand Down

0 comments on commit 9712908

Please sign in to comment.