srctree
repos
owner
network
issues
0
diffs
0
Public
Mikael Larsson
parent
07d7643b
5f4cd6f3
protocol: Fix clang-tidy readability-make-member-function-const warning
inline
split
protocol/http_test.cpp
added: 2, removed: 2, total 0
@@ -28,7 +28,7 @@ struct FakeSocket {
return write_data.size();
}
std::string read_all() { return read_data; }
std::string read_all() const { return read_data; }
std::string read_until(std::string_view d) {
delimiter = d;