Code cleanup

This commit is contained in:
yhirose 2019-05-07 21:46:15 -04:00
parent 3f42804a4f
commit dfc94f2cab
7 changed files with 3 additions and 15 deletions

View file

@ -1,11 +1,11 @@
#include <httplib.h>
#include <chrono>
#include <httplib.h>
#include <iostream>
using namespace std;
struct StopWatch {
StopWatch(const string& label) : label_(label) {
StopWatch(const string &label) : label_(label) {
start_ = chrono::system_clock::now();
}
~StopWatch() {