Skip to content
This repository was archived by the owner on Feb 20, 2023. It is now read-only.

Commit 5f59b7a

Browse files
authored
Fix missing includes in model_server_manager header. (#1407)
* Fix missing includes. * NOLINT cv and thread, thanks Matt.
1 parent 5cc1a42 commit 5f59b7a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/include/self_driving/model_server/model_server_manager.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,19 @@
1212

1313
#pragma once
1414

15+
#include <atomic>
16+
#include <condition_variable> // NOLINT
1517
#include <string>
18+
#include <thread> // NOLINT
1619
#include <utility>
1720
#include <vector>
1821

1922
#include "common/json.h"
2023
#include "common/managed_pointer.h"
24+
#include "messenger/messenger_defs.h"
2125

2226
namespace noisepage::messenger {
27+
class ConnectionRouter;
2328
class Messenger;
2429
} // namespace noisepage::messenger
2530

0 commit comments

Comments
 (0)