clang-format

This commit is contained in:
Erik Frojdh
2020-05-04 16:30:00 +02:00
parent 32662baef8
commit 959fd562d3
38 changed files with 3615 additions and 3194 deletions

View File

@ -39,7 +39,7 @@ void read_int(Interface &socket) {
std::cout << "Read <int>: " << i << "\n";
}
void read_combined(Interface &socket){
void read_combined(Interface &socket) {
auto i = socket.Receive<int>();
auto d = socket.Receive<double>();
auto f = socket.Receive<float>();