diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-03-20 09:09:27 +0100 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-03-20 09:09:27 +0100 |
commit | 0b516e9490b51bdd15c347fcda35b5dbb06b4829 (patch) | |
tree | 33e16fe3a143fa6dcfe3d4b57f0b731c8e414652 /src/keeper.cpp | |
parent | f707ad2568e6bfb8f34496ce647d0fd153723448 (diff) | |
download | lanes-0b516e9490b51bdd15c347fcda35b5dbb06b4829.tar.gz lanes-0b516e9490b51bdd15c347fcda35b5dbb06b4829.tar.bz2 lanes-0b516e9490b51bdd15c347fcda35b5dbb06b4829.zip |
C++ migration: bool_t → bool
Diffstat (limited to 'src/keeper.cpp')
-rw-r--r-- | src/keeper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keeper.cpp b/src/keeper.cpp index 10fba2b..1e344f2 100644 --- a/src/keeper.cpp +++ b/src/keeper.cpp | |||
@@ -397,7 +397,7 @@ int keepercall_limit( lua_State* L) | |||
397 | //out: true or nil | 397 | //out: true or nil |
398 | int keepercall_set( lua_State* L) | 398 | int keepercall_set( lua_State* L) |
399 | { | 399 | { |
400 | bool_t should_wake_writers = FALSE; | 400 | bool should_wake_writers{ false }; |
401 | STACK_GROW( L, 6); | 401 | STACK_GROW( L, 6); |
402 | 402 | ||
403 | // retrieve fifos associated with the linda | 403 | // retrieve fifos associated with the linda |