aboutsummaryrefslogtreecommitdiff
path: root/src/lindafactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lindafactory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lindafactory.cpp b/src/lindafactory.cpp
index 16c653f..9bc56d9 100644
--- a/src/lindafactory.cpp
+++ b/src/lindafactory.cpp
@@ -91,12 +91,12 @@ void LindaFactory::deleteDeepObjectInternal(lua_State* L_, DeepPrelude* o_) cons
91 91
92// ################################################################################################# 92// #################################################################################################
93 93
94char const* LindaFactory::moduleName() const 94std::string_view LindaFactory::moduleName() const
95{ 95{
96 // linda is a special case because we know lanes must be loaded from the main lua state 96 // linda is a special case because we know lanes must be loaded from the main lua state
97 // to be able to ever get here, so we know it will remain loaded as long a the main state is around 97 // to be able to ever get here, so we know it will remain loaded as long a the main state is around
98 // in other words, forever. 98 // in other words, forever.
99 return nullptr; 99 return std::string_view{};
100} 100}
101 101
102// ################################################################################################# 102// #################################################################################################