From 0da83813e0443c2eb33da2d1188cf1f40156cb14 Mon Sep 17 00:00:00 2001 From: Markus Mittendrein Date: Thu, 16 Aug 2018 17:44:15 +0200 Subject: Add missing default value for the recursive parameter of CppC4Group::deleteEntry --- src/cppc4group.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cppc4group.hpp b/src/cppc4group.hpp index fc46592..2e75462 100644 --- a/src/cppc4group.hpp +++ b/src/cppc4group.hpp @@ -63,7 +63,7 @@ public: std::optional getEntryInfo(const std::string& path = ""); std::optional> getEntryInfos(const std::string& path = ""); - bool deleteEntry(const std::string& path, const bool recursive); + bool deleteEntry(const std::string& path, const bool recursive = false); bool renameEntry(const std::string& oldPath, const std::string& newPath); bool createDirectory(const std::string& path); -- cgit v1.2.3-54-g00ecf