aboutsummaryrefslogtreecommitdiff
path: root/src/lane.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lane.h')
-rw-r--r--src/lane.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lane.h b/src/lane.h
index 836b1b3..3c3cced 100644
--- a/src/lane.h
+++ b/src/lane.h
@@ -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 };