summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Mittendrein <git@maxmitti.tk>2018-08-16 17:44:15 +0200
committerMarkus Mittendrein <git@maxmitti.tk>2018-08-16 17:44:15 +0200
commit0da83813e0443c2eb33da2d1188cf1f40156cb14 (patch)
tree535c393e7f6934c4b8420d0a4bb0dfe28bb38271
parentdc22d81f89a0eeb13e8e760ff9c84c22135a7ce4 (diff)
downloadcc4group-0da83813e0443c2eb33da2d1188cf1f40156cb14.tar.gz
cc4group-0da83813e0443c2eb33da2d1188cf1f40156cb14.zip
Add missing default value for the recursive parameter of CppC4Group::deleteEntry
-rw-r--r--src/cppc4group.hpp2
1 files changed, 1 insertions, 1 deletions
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<EntryInfo> getEntryInfo(const std::string& path = "");
std::optional<std::vector<EntryInfo>> 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);