align cpp w/ hpp naming

This commit is contained in:
Tyler Neely 2022-08-09 15:21:52 +00:00
parent d15105455a
commit 5f225a623e

View File

@ -63,7 +63,7 @@ class TestState {
std::map<int, int> state_;
public:
GetResponse read(GetRequest request) {
GetResponse Read(GetRequest request) {
GetResponse ret;
if (state_.contains(request.key)) {
ret.value = state_[request.key];
@ -71,7 +71,7 @@ class TestState {
return ret;
}
CasResponse apply(CasRequest request) {
CasResponse Apply(CasRequest request) {
CasResponse ret;
// Key exist