Skip to content

Commit 3b37de7

Browse files
Add files via upload
1 parent cf71dbe commit 3b37de7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

wellcoordination/benchmark/rubis.hpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ class Rubis : public ReplicatedObject
132132
storeBuyNow(s_id, value);
133133
break;
134134
}
135-
case MethodType::REGISTER_USER{
135+
case MethodType::REGISTER_USER:
136+
{
136137
registeruser(std::stoi(call.arg));
137138
break;
138139
}
@@ -144,7 +145,7 @@ class Rubis : public ReplicatedObject
144145
index = sub_arg.find_first_of('-');
145146
int u_id = std::stoi(sub_arg.substr(0, index));
146147
int value = std::stoi(sub_arg.substr(index + 1, sub_arg.length()));
147-
placeBid(a_id, u_id, value)
148+
placeBid(a_id, u_id, value);
148149
break;
149150
}
150151
case MethodType::QUERY:

0 commit comments

Comments
 (0)