Skip to content

Commit

Permalink
Added missing include for <thread> (#721)
Browse files Browse the repository at this point in the history
- Fixes compilation issue when using GCC 11

Signed-off-by: The MathWorks, Inc. <alchrist@mathworks.com>

Signed-off-by: The MathWorks, Inc. <alchrist@mathworks.com>
  • Loading branch information
achristoforides committed Sep 19, 2022
1 parent a543239 commit fa69c78
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
#include "boost/asio/thread_pool.hpp"

#include <future>
#include <thread>

#include "ConfigurationAdminTestingConfig.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
#include "cppmicroservices/servicecomponent/runtime/ServiceComponentRuntime.hpp"

#include <future>
#include <thread>

namespace test {

Expand Down
1 change: 1 addition & 0 deletions framework/test/gtest/ServiceTrackerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
#include <chrono>
#include <future>
#include <memory>
#include <thread>
#include <unordered_map>

#include "gmock/gmock.h"
Expand Down

0 comments on commit fa69c78

Please sign in to comment.