Bug 837561 ReadInt16 and WriteInt16 should be paired r=benjamin

This commit is contained in:
Ginn Chen 2013-02-18 15:19:03 +08:00
Родитель 9d2a3ad575
Коммит e0fe4d34b6
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -266,7 +266,7 @@ template <>
struct ParamTraitsFixed<int16_t> {
typedef int16_t param_type;
static void Write(Message* m, const param_type& p) {
m->WriteInt(p);
m->WriteInt16(p);
}
static bool Read(const Message* m, void** iter, param_type* r) {
return m->ReadInt16(iter, r);
@ -280,7 +280,7 @@ template <>
struct ParamTraitsFixed<uint16_t> {
typedef uint16_t param_type;
static void Write(Message* m, const param_type& p) {
m->WriteInt(p);
m->WriteUInt16(p);
}
static bool Read(const Message* m, void** iter, param_type* r) {
return m->ReadUInt16(iter, r);