From 43b04d71d80d7bbc610eef1bce838cee4cf1631a Mon Sep 17 00:00:00 2001 From: Markus Mittendrein Date: Thu, 2 Apr 2020 02:32:04 +0200 Subject: Fix definition of CppC4Group's AllowedEntryTypes --- src/cppc4group.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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 }; -- cgit v1.2.3-54-g00ecf