diff options
| author | Markus Mittendrein <git@maxmitti.tk> | 2020-04-02 02:32:04 +0200 |
|---|---|---|
| committer | Markus Mittendrein <git@maxmitti.tk> | 2020-04-02 02:32:04 +0200 |
| commit | 43b04d71d80d7bbc610eef1bce838cee4cf1631a (patch) | |
| tree | 0f64a5b7110e2ff1665af50d7b15b60d8178bf3b | |
| parent | 815b983b3a4ca0c0bfa230d3924c31cfbff14a81 (diff) | |
| download | cc4group-43b04d71d80d7bbc610eef1bce838cee4cf1631a.tar.gz cc4group-43b04d71d80d7bbc610eef1bce838cee4cf1631a.zip | |
Fix definition of CppC4Group's AllowedEntryTypes
| -rw-r--r-- | src/cppc4group.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cppc4group.hpp b/src/cppc4group.hpp index e263ca4..363fc91 100644 --- a/src/cppc4group.hpp +++ b/src/cppc4group.hpp @@ -122,8 +122,8 @@ public: }; enum class AllowedEntryTypes { - File, - Directory, + File = 0x1, + Directory = 0x2, All = File | Directory }; |
