Skip to content

Commit

Permalink
Fix PLUTO_VMDUMP not compiling on clang
Browse files Browse the repository at this point in the history
  • Loading branch information
Sainan committed Jul 19, 2023
1 parent 044c54c commit 049f97f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lvm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1331,7 +1331,7 @@ void luaV_execute (lua_State *L, CallInfo *ci) {
std::time_t deadline = std::chrono::duration_cast<std::chrono::nanoseconds>(std::chrono::steady_clock::now().time_since_epoch()).count()
+ PLUTO_ETL_NANOS;
#endif
#if defined(__GNUC__) || defined(__clang__)
#if (defined(__GNUC__) || defined(__clang__)) && !defined(PLUTO_VMDUMP)
#include "ljumptabgcc.h"
#endif
startfunc:
Expand Down

0 comments on commit 049f97f

Please sign in to comment.