index
:
lanes
C-Implementation
gh-pages
master
A mirror of https://github.com/LuaLanes/lanes.git
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
deep.cpp
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
Sprinkling StackIndex all over the place
Benoit Germain
2024-10-08
1
-12
/
+12
*
Lindas now accept deep user data as valid keys
Benoit Germain
2024-06-24
1
-1
/
+8
*
lua_pushliteral -> luaG_pushstring
Benoit Germain
2024-06-14
1
-1
/
+1
*
Add support for to-be-closed linda
Benoit Germain
2024-06-12
1
-2
/
+1
*
Boyscouting some luaG_ functions
Benoit Germain
2024-06-07
1
-7
/
+7
*
Use a precompiled header to speed up the build
Benoit Germain
2024-06-07
1
-4
/
+1
*
Converted a few more raw string pointers to std::string_view
Benoit Germain
2024-06-06
1
-2
/
+1
*
Modernize compat
Benoit Germain
2024-06-05
1
-4
/
+4
*
Moved lanes.sleep implementation to the C-side
Benoit Germain
2024-06-03
1
-3
/
+15
*
Improved multi-keeper tests
Benoit Germain
2024-05-31
1
-4
/
+5
*
Boyscouting deep.cpp|h
Benoit Germain
2024-05-29
1
-84
/
+98
*
PushDeepProxy internal change
Benoit Germain
2024-05-29
1
-45
/
+42
*
DEBUGSPEW fprintf(stderr) → std::cerr
Benoit Germain
2024-05-22
1
-2
/
+2
*
lua503_getfield → strong typed luaG_getfield
Benoit Germain
2024-05-22
1
-5
/
+4
*
Lane::debugName is a std::string_view
Benoit Germain
2024-05-20
1
-9
/
+9
*
Fixed forgotten int → LuaError
Benoit Germain
2024-05-20
1
-3
/
+2
*
Start using string_view
Benoit Germain
2024-05-20
1
-4
/
+4
*
linda:limit errors on limits < 1
Benoit Germain
2024-05-20
1
-23
/
+3
*
Progressively applying the coding rules
Benoit Germain
2024-05-13
1
-31
/
+33
*
Move InterCopyContext implementation in a separate file
Benoit Germain
2024-05-13
1
-55
/
+1
*
Some code factorization
Benoit Germain
2024-05-03
1
-2
/
+22
*
InterCopyContext always raises errors in a non-Keeper state
Benoit Germain
2024-05-02
1
-9
/
+7
*
Progressively applying the coding rules
Benoit Germain
2024-05-02
1
-8
/
+8
*
Progressively applying the coding rules
Benoit Germain
2024-04-30
1
-36
/
+28
*
Progressively applying the coding rules
Benoit Germain
2024-04-30
1
-185
/
+145
*
Progressively applying the coding rules
Benoit Germain
2024-04-29
1
-88
/
+88
*
Fix keeper state stack integrity assertion
Benoit Germain
2024-04-29
1
-1
/
+5
*
Function parameters L → L_
Benoit Germain
2024-04-29
1
-46
/
+46
*
C++ migration: wrap all Lua error raising API functions in a [[noreturn]] rai...
Benoit Germain
2024-04-26
1
-6
/
+6
*
Formalize a few coding style rules, start to enforce them for constants
Benoit Germain
2024-04-26
1
-9
/
+9
*
C++ migration: using KeeperState = Unique<lua_State*>
Benoit Germain
2024-04-24
1
-2
/
+2
*
ASSERT_L → LUA_ASSERT
Benoit Germain
2024-04-24
1
-6
/
+6
*
C++ migration: split UniqueKey into UniqueKey+RegistryUniqueKey
Benoit Germain
2024-04-24
1
-2
/
+2
*
some dead code elimination and other trifles
Benoit Germain
2024-04-16
1
-28
/
+28
*
C++ migration: inter-state transfer managed by a new class InterCopyContext
Benoit Germain
2024-04-15
1
-14
/
+16
*
C++ migration: all linda operations go through a different lua_CFunction so a...
Benoit Germain
2024-04-15
1
-3
/
+3
*
C++ migration: deep userdata API rework. bye bye idfunc, hello DeepFactory
Benoit Germain
2024-04-15
1
-90
/
+59
*
C++ migration: luaG_inter_copy_* now return an enum class instead of an anony...
Benoit Germain
2024-04-10
1
-1
/
+1
*
C++ migration: fixed a few std::ignore
Benoit Germain
2024-04-10
1
-8
/
+7
*
C++ migration: [[nodiscard]] everywhere. still have to check all std::ignore
Benoit Germain
2024-04-09
1
-4
/
+8
*
C++ migration: use strong type safety for source and destination states in tr...
Benoit Germain
2024-04-09
1
-18
/
+22
*
C++ migration: all enums are enum class
Benoit Germain
2024-03-29
1
-20
/
+20
*
C++ migration: improved UniqueKey interface
Benoit Germain
2024-03-28
1
-2
/
+3
*
C++ migration: Linda is a proper class with overloaded operator new/delete
Benoit Germain
2024-03-28
1
-10
/
+11
*
C++ migration: cleanup usage of lua_error and luaL_error
Benoit Germain
2024-03-28
1
-3
/
+3
*
C++ migration: fix deep userdata refcounting bug introduced by std::atomic usage
Benoit Germain
2024-03-27
1
-3
/
+2
*
C++ migration: new helper templates lua_tolightuserdata and lua_tofulluserdata
Benoit Germain
2024-03-27
1
-21
/
+17
*
C++ migration: templated lua_touserdata
Benoit Germain
2024-03-26
1
-8
/
+6
*
C++ migration: Universe MUTEX_T replaced with std::mutex and std::atomic
Benoit Germain
2024-03-25
1
-43
/
+36
*
C++ migration: revamped stack checking macros
Benoit Germain
2024-03-25
1
-21
/
+20
[next]