Skip to content
This repository was archived by the owner on Apr 6, 2019. It is now read-only.

Commit 2cd18b5

Browse files
author
Simon Ninon
committed
[3.5.4] fix issue #86 - change char into int64_t for now, will inspect more deeply the issue on 32bit arch to apply the most appropriate solution later on.
1 parent 727aa5f commit 2cd18b5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

includes/cpp_redis/builders/integer_builder.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ class integer_builder : public builder_iface {
5252

5353
private:
5454
int64_t m_nbr;
55-
char m_negative_multiplicator;
55+
int64_t m_negative_multiplicator;
5656
bool m_reply_ready;
5757

5858
reply m_reply;
5959
};
6060

61-
} //! builders
61+
} // namespace builders
6262

63-
} //! cpp_redis
63+
} // namespace cpp_redis

0 commit comments

Comments
 (0)