Skip to content
Snippets Groups Projects
Commit 9c44aace authored by est31's avatar est31
Browse files

l_mainmenu.h: remove unused l_get_dirlist function

The commit
8f9af573 "Add core.get_dir_list" by @ShadowNinja
has removed the implementation of the l_get_dirlist function and all its usages
from the l_mainmenu.cpp file, but hasn't removed it from the header file.

The reason why this hasn't been detected earlier is that C++ has this interesting
feature to still make it possible to create instances of classes whose never used
private methods are declared but not defined.
parent 18973f9a
No related branches found
No related tags found
No related merge requests found
......@@ -119,8 +119,6 @@ class ModApiMainMenu : public ModApiBase {
static int l_get_texturepath_share(lua_State *L);
static int l_get_dirlist(lua_State *L);
static int l_create_dir(lua_State *L);
static int l_delete_dir(lua_State *L);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment