diff options
Diffstat (limited to 'deep_test/deep_test.cpp')
-rw-r--r-- | deep_test/deep_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deep_test/deep_test.cpp b/deep_test/deep_test.cpp index 35a2e56..9ca88df 100644 --- a/deep_test/deep_test.cpp +++ b/deep_test/deep_test.cpp | |||
@@ -19,7 +19,7 @@ class MyDeepFactory : public DeepFactory | |||
19 | { | 19 | { |
20 | luaL_getmetatable(L_, "deep"); | 20 | luaL_getmetatable(L_, "deep"); |
21 | } | 21 | } |
22 | [[nodiscard]] char const* moduleName() const override { return "deep_test"; } | 22 | [[nodiscard]] std::string_view moduleName() const override { return std::string_view{ "deep_test" }; } |
23 | }; | 23 | }; |
24 | /*static*/ MyDeepFactory MyDeepFactory::Instance{}; | 24 | /*static*/ MyDeepFactory MyDeepFactory::Instance{}; |
25 | 25 | ||