Skip to content

Commit 8f76516

Browse files
fix: apply clang-tidy suggestions
Signed-off-by: Jorge Ferreira <jorge.ferreira@precisioninno.com>
1 parent 736d096 commit 8f76516

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

src/web/include/web/web.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
#pragma once
55

6+
#include <spdlog/common.h>
7+
68
#include <functional>
79
#include <memory>
810
#include <string>
@@ -11,7 +13,6 @@
1113

1214
#include "boost/asio/ip/tcp.hpp"
1315
#include "odb/db.h"
14-
#include "spdlog/spdlog.h"
1516
#include "tcl.h"
1617
#include "utl/Logger.h"
1718

src/web/src/request_handler.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
#include "odb/geom.h"
3838
#include "tile_generator.h"
3939
#include "timing_report.h"
40+
#include "utl/Logger.h"
4041

4142
namespace web {
4243

src/web/src/web_serve.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
// references (which would require the full gui library including Qt
77
// SWIG wrappers and ord::OpenRoad symbols).
88

9+
#include <stdio.h>
10+
911
#include <cstdint>
1012
#include <cstdio>
1113
#include <cstdlib>
@@ -14,6 +16,7 @@
1416
#include <memory>
1517
#include <mutex>
1618
#include <string>
19+
#include <thread>
1720
#include <vector>
1821

1922
#ifndef _WIN32

0 commit comments

Comments
 (0)