aboutsummaryrefslogtreecommitdiff
path: root/src/keeper.h
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-06-26 17:45:16 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2024-06-26 17:45:16 +0200
commit62a7eab66f8f6af66c94390138815c3171b62810 (patch)
tree0b93a11f97e186d82a931b40ae092f7438ca3f31 /src/keeper.h
parente715be93bf00a452a6c2f1cd86a60b4ef5f30b07 (diff)
downloadlanes-62a7eab66f8f6af66c94390138815c3171b62810.tar.gz
lanes-62a7eab66f8f6af66c94390138815c3171b62810.tar.bz2
lanes-62a7eab66f8f6af66c94390138815c3171b62810.zip
Change linda:limit()
* read the current limit of a key if no limit is provided * "unlimited" is to be used to clear the limit * fix linda:set() not ignoring the limit
Diffstat (limited to 'src/keeper.h')
-rw-r--r--src/keeper.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/keeper.h b/src/keeper.h
index 102d006..05e3547 100644
--- a/src/keeper.h
+++ b/src/keeper.h
@@ -8,6 +8,7 @@ enum class LookupMode;
8class Universe; 8class Universe;
9 9
10using KeeperState = Unique<lua_State*>; 10using KeeperState = Unique<lua_State*>;
11using LindaLimit = Unique<int>;
11 12
12// ################################################################################################# 13// #################################################################################################
13 14