diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-06-14 12:25:23 +0200 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-06-14 12:25:23 +0200 |
commit | 792128255b6c6add22f97ea60734181cb915f2ae (patch) | |
tree | c3d8e3a3466639591245495ec0148d49732193c3 /src/lane.h | |
parent | 6177a3c6b5a05ac2c64978ccf3ca11de9793505b (diff) | |
download | lanes-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.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 }; |