aboutsummaryrefslogtreecommitdiff
path: root/src/universe.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/universe.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/universe.hpp b/src/universe.hpp
index ab06907..2a3085d 100644
--- a/src/universe.hpp
+++ b/src/universe.hpp
@@ -106,7 +106,7 @@ class Universe final
106 LaneTracker tracker; 106 LaneTracker tracker;
107 107
108 // Protects modifying the selfdestruct chain 108 // Protects modifying the selfdestruct chain
109 std::mutex selfdestructMutex; 109 mutable std::mutex selfdestructMutex;
110 110
111 // require() serialization 111 // require() serialization
112 std::recursive_mutex requireMutex; 112 std::recursive_mutex requireMutex;
@@ -126,6 +126,7 @@ class Universe final
126 126
127 private: 127 private:
128 static int UniverseGC(lua_State* L_); 128 static int UniverseGC(lua_State* L_);
129 void flagDanglingLanes() const;
129 130
130 public: 131 public:
131 [[nodiscard]] 132 [[nodiscard]]