diff options
| author | Markus Mittendrein <git@maxmitti.tk> | 2018-08-16 17:44:15 +0200 |
|---|---|---|
| committer | Markus Mittendrein <git@maxmitti.tk> | 2018-08-16 17:44:15 +0200 |
| commit | 0da83813e0443c2eb33da2d1188cf1f40156cb14 (patch) | |
| tree | 535c393e7f6934c4b8420d0a4bb0dfe28bb38271 /src/cppc4group.hpp | |
| parent | dc22d81f89a0eeb13e8e760ff9c84c22135a7ce4 (diff) | |
| download | cc4group-0da83813e0443c2eb33da2d1188cf1f40156cb14.tar.gz cc4group-0da83813e0443c2eb33da2d1188cf1f40156cb14.zip | |
Add missing default value for the recursive parameter of CppC4Group::deleteEntry
Diffstat (limited to 'src/cppc4group.hpp')
| -rw-r--r-- | src/cppc4group.hpp | 2 |
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); |
