This is an automated email from the ASF dual-hosted git repository.

jbarrett pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/develop by this push:
     new 681ffc2  GEODE-4423: Fixes enumeration ordinal values.
681ffc2 is described below

commit 681ffc27fce4ac8eee9e212df842682fcd306642
Author: Jacob Barrett <jbarr...@pivotal.io>
AuthorDate: Thu Feb 1 12:45:51 2018 -0800

    GEODE-4423: Fixes enumeration ordinal values.
---
 cppcache/include/geode/PdxFieldTypes.hpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cppcache/include/geode/PdxFieldTypes.hpp 
b/cppcache/include/geode/PdxFieldTypes.hpp
index 131143a..b3117b8 100644
--- a/cppcache/include/geode/PdxFieldTypes.hpp
+++ b/cppcache/include/geode/PdxFieldTypes.hpp
@@ -25,8 +25,8 @@ namespace geode {
 namespace client {
 
 enum class PdxFieldTypes : int8_t {
-  UNKNOWN = 0,
-  BOOLEAN,
+  UNKNOWN = -1,
+  BOOLEAN = 0,
   BYTE,
   CHAR,
   SHORT,

-- 
To stop receiving notification emails like this one, please contact
jbarr...@apache.org.

Reply via email to