Fixed handling of signed 64bit integers to support 32bit and 64bit architectures
Fixed a few bugs with php code generation
Initial stab at setting absolute thrift php require_once paths at configure time in order to guarantee APC caching. Needswork. It's hard to get automake to allow post-processing of installed files.
Lightly reviewed by mark slee
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664768 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/cpp/src/protocol/TProtocol.h b/lib/cpp/src/protocol/TProtocol.h
index 38c5347..092dd8d 100644
--- a/lib/cpp/src/protocol/TProtocol.h
+++ b/lib/cpp/src/protocol/TProtocol.h
@@ -33,7 +33,8 @@
T_VOID = 1,
T_BOOL = 2,
T_BYTE = 3,
- T_U08 = 4,
+ T_U08 = 3,
+ T_I08 = 4,
T_U16 = 5,
T_I16 = 6,
T_U32 = 7,
@@ -41,13 +42,13 @@
T_U64 = 9,
T_I64 = 10,
T_STRING = 11,
- T_UTF7 = 12,
- T_STRUCT = 13,
- T_MAP = 14,
- T_SET = 15,
- T_LIST = 16,
- T_UTF8 = 17,
- T_UTF16 = 18
+ T_UTF7 = 11,
+ T_STRUCT = 12,
+ T_MAP = 13,
+ T_SET = 14,
+ T_LIST = 15,
+ T_UTF8 = 16,
+ T_UTF16 = 17
};
/**