diff options
Diffstat (limited to 'src/lane.h')
-rw-r--r-- | src/lane.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -68,7 +68,7 @@ class Lane | |||
68 | using enum ErrorTraceLevel; | 68 | using enum ErrorTraceLevel; |
69 | 69 | ||
70 | // the thread | 70 | // the thread |
71 | std::jthread thread; | 71 | std::thread thread; // use jthread if we ever need a stop_source |
72 | #ifndef __PROSPERO__ | 72 | #ifndef __PROSPERO__ |
73 | // a latch to wait for the lua_State to be ready | 73 | // a latch to wait for the lua_State to be ready |
74 | std::latch ready{ 1 }; | 74 | std::latch ready{ 1 }; |