Apply clang-tidy fixes

This commit is contained in:
Tyler Neely 2022-11-18 10:24:19 +00:00
parent 0f32407bdc
commit 7115a7e75b
2 changed files with 5 additions and 1 deletions

View File

@ -20,6 +20,8 @@
#include <boost/uuid/uuid_generators.hpp>
#include <boost/uuid/uuid_io.hpp>
#include "utils/logging.hpp"
namespace memgraph::io {
struct PartialAddress {

View File

@ -13,6 +13,8 @@
#include <cstdint>
#include <fmt/format.h>
namespace memgraph::io::simulator {
struct SimulatorStats {
uint64_t total_messages = 0;
@ -22,7 +24,7 @@ struct SimulatorStats {
uint64_t total_responses = 0;
uint64_t simulator_ticks = 0;
friend bool operator==(const SimulatorStats &lhs, const SimulatorStats &rhs) = default;
friend bool operator==(const SimulatorStats & /* lhs */, const SimulatorStats & /* rhs */) = default;
friend std::ostream &operator<<(std::ostream &in, const SimulatorStats &stats) {
std::string formated = fmt::format(