Commit 59861a1f authored by Antoine Kaufmann's avatar Antoine Kaufmann Committed by Antoine Kaufmann
Browse files

fix all cpplint warnings

make lint should pass again now
parent 34e5a23f
......@@ -827,7 +827,7 @@ int_ev::int_ev() {
class i40e_factory : public nicbm::MultiNicRunner::DeviceFactory {
public:
virtual nicbm::Runner::Device &create() override {
nicbm::Runner::Device &create() override {
return *new i40e::i40e_bm;
}
};
......
......@@ -124,12 +124,12 @@ bool log_parser::next_event() {
void log_parser::read_coro(coro_t::push_type &sink_) {
sink = &sink_;
while (next_event())
;
while (next_event()) {
}
}
void log_parser::yield(std::shared_ptr<event> ev) {
got_event = true;
ev->source = this;
(*sink)(ev);
}
\ No newline at end of file
}
......@@ -24,10 +24,12 @@
#include "trace/process.h"
#include <algorithm>
#include <boost/bind.hpp>
#include <boost/foreach.hpp>
#include <iostream>
#include <memory>
#include <utility>
#include <vector>
#include "trace/events.h"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment