You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pn...@apache.org on 2018/04/25 10:15:00 UTC

celix git commit: CELIX-446: Adds some missing include statements

Repository: celix
Updated Branches:
  refs/heads/develop 985c35f2f -> f1f38c019


CELIX-446: Adds some missing include statements


Project: http://git-wip-us.apache.org/repos/asf/celix/repo
Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/f1f38c01
Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/f1f38c01
Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/f1f38c01

Branch: refs/heads/develop
Commit: f1f38c01928e4fdbbfac8d062b7a3d94b1193164
Parents: 985c35f
Author: Pepijn Noltes <pe...@gmail.com>
Authored: Wed Apr 25 12:14:42 2018 +0200
Committer: Pepijn Noltes <pe...@gmail.com>
Committed: Wed Apr 25 12:14:42 2018 +0200

----------------------------------------------------------------------
 framework/tst/framework_bundle_context.cpp | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/celix/blob/f1f38c01/framework/tst/framework_bundle_context.cpp
----------------------------------------------------------------------
diff --git a/framework/tst/framework_bundle_context.cpp b/framework/tst/framework_bundle_context.cpp
index e38bc22..e791192 100644
--- a/framework/tst/framework_bundle_context.cpp
+++ b/framework/tst/framework_bundle_context.cpp
@@ -18,10 +18,12 @@
  */
 #include <thread>
 #include <chrono>
+#include <iostream>
+#include <mutex>
+#include <condition_variable>
 
 #include <CppUTest/TestHarness.h>
 #include <CppUTest/CommandLineTestRunner.h>
-#include <iostream>
 
 #include "bundle.h"
 #include "properties.h"
@@ -187,4 +189,4 @@ TEST(CelixFrameworkContextTests, registerAndUseWithForcedRaceCondition) {
     std::cout << "use thread joined" << std::endl;
     unregisterThread.join();
     std::cout << "unregister thread joined" << std::endl;
-};
\ No newline at end of file
+};