From e004e47e5a16689fcdaa34a7d2b38016feeb83d1 Mon Sep 17 00:00:00 2001 From: nodchip Date: Mon, 7 Sep 2020 16:21:40 +0900 Subject: [PATCH] Commented out an unused function parameter to remove a compile warning. --- src/misc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc.cpp b/src/misc.cpp index 851280fe..5c2a4637 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -743,7 +743,7 @@ namespace Dependency { // The function to dig a folder on linux is good for the time being... Only used to save the evaluation function file... namespace Dependency { - int mkdir(std::string dir_name) + int mkdir(std::string /* dir_name */) { return 0; }