Skip to content

Commit fb92902

Browse files
committed
Fix #208
1 parent 29cf498 commit fb92902

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

include/graphqlservice/GraphQLService.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#include "graphqlservice/internal/Version.h"
2727

2828
#include <chrono>
29+
#include <condition_variable>
2930
#include <functional>
3031
#include <future>
3132
#include <list>
@@ -37,6 +38,7 @@
3738
#include <stdexcept>
3839
#include <string>
3940
#include <string_view>
41+
#include <thread>
4042
#include <tuple>
4143
#include <type_traits>
4244
#include <variant>

src/GraphQLService.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
#include <algorithm>
1111
#include <array>
1212
#include <iostream>
13-
#include <thread>
1413

1514
namespace graphql::service {
1615

test/CoroutineTests.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,6 @@
77

88
#include "graphqlservice/JSONResponse.h"
99

10-
#include <chrono>
11-
#include <condition_variable>
12-
#include <mutex>
13-
#include <queue>
14-
#include <thread>
15-
1610
using namespace graphql;
1711

1812
using namespace std::literals;

0 commit comments

Comments
 (0)