aboutsummaryrefslogtreecommitdiff
path: root/src/lane.h
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-06-14 12:25:23 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2024-06-14 12:25:23 +0200
commit792128255b6c6add22f97ea60734181cb915f2ae (patch)
treec3d8e3a3466639591245495ec0148d49732193c3 /src/lane.h
parent6177a3c6b5a05ac2c64978ccf3ca11de9793505b (diff)
downloadlanes-792128255b6c6add22f97ea60734181cb915f2ae.tar.gz
lanes-792128255b6c6add22f97ea60734181cb915f2ae.tar.bz2
lanes-792128255b6c6add22f97ea60734181cb915f2ae.zip
More fixes to make clang happy
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 };