skyitachi commented on code in PR #1890:
URL: https://github.com/apache/kvrocks/pull/1890#discussion_r1403141897
##########
src/types/json.h:
##########
@@ -39,6 +39,11 @@
constexpr ssize_t NOT_FOUND_INDEX = -1;
constexpr ssize_t NOT_ARRAY = -2;
+enum class NumOpEnum : uint8_t {
+ Incr = 1,
+ Mul = 2,
+};
Review Comment:
is that put the definition in the JsonValue?
```
struct JsonValue {
enum class NumOpEnum : uint8_t {
Incr = 1,
Mul = 2,
};
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]