Use snake_case for Connection etc methods
This commit is contained in:
@@ -16,9 +16,9 @@ struct TestConnectionData {
|
||||
std::string message_buffer;
|
||||
void *user_data = nullptr;
|
||||
|
||||
void appendMessage(std::string_view data) { message_buffer += data; }
|
||||
void append_message(std::string_view data) { message_buffer += data; }
|
||||
|
||||
ArenaAllocator &getArena() { return arena; }
|
||||
ArenaAllocator &get_arena() { return arena; }
|
||||
const std::string &getResponse() const { return message_buffer; }
|
||||
void clearResponse() { message_buffer.clear(); }
|
||||
void reset() {
|
||||
|
||||
Reference in New Issue
Block a user