mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-05-15 01:08:27 +00:00
Code cleanup
This commit is contained in:
parent
3f42804a4f
commit
dfc94f2cab
7 changed files with 3 additions and 15 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue