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() { ...@@ -827,7 +827,7 @@ int_ev::int_ev() {
class i40e_factory : public nicbm::MultiNicRunner::DeviceFactory { class i40e_factory : public nicbm::MultiNicRunner::DeviceFactory {
public: public:
virtual nicbm::Runner::Device &create() override { nicbm::Runner::Device &create() override {
return *new i40e::i40e_bm; return *new i40e::i40e_bm;
} }
}; };
......
...@@ -124,8 +124,8 @@ bool log_parser::next_event() { ...@@ -124,8 +124,8 @@ bool log_parser::next_event() {
void log_parser::read_coro(coro_t::push_type &sink_) { void log_parser::read_coro(coro_t::push_type &sink_) {
sink = &sink_; sink = &sink_;
while (next_event()) while (next_event()) {
; }
} }
void log_parser::yield(std::shared_ptr<event> ev) { void log_parser::yield(std::shared_ptr<event> ev) {
......
...@@ -24,10 +24,12 @@ ...@@ -24,10 +24,12 @@
#include "trace/process.h" #include "trace/process.h"
#include <algorithm>
#include <boost/bind.hpp> #include <boost/bind.hpp>
#include <boost/foreach.hpp> #include <boost/foreach.hpp>
#include <iostream> #include <iostream>
#include <memory> #include <memory>
#include <utility>
#include <vector> #include <vector>
#include "trace/events.h" #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