Skip to content

Commit

Permalink
feat: add stream cmd bitop bitop ops
Browse files Browse the repository at this point in the history
  • Loading branch information
callme-taota committed Nov 21, 2023
1 parent f6c5e37 commit 7c2690d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cmd_kv.cc
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ bool BitOpCmd::DoInitial(PClient* client) {
return true;
}

static PString StringBitOp(const std::vector<const PString*>& keys, BitOp_op op) {
static PString StringBitOp(const std::vector<const PString*>& keys, BitOp op) {
PString res;

switch (op) {
Expand Down
2 changes: 1 addition & 1 deletion src/cmd_kv.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#include "base_cmd.h"

enum BitOp_op {
enum BitOp {
BitOp_and,
BitOp_or,
BitOp_not,
Expand Down

0 comments on commit 7c2690d

Please sign in to comment.