summaryrefslogtreecommitdiff
path: root/ACE/tests/Recursive_Condition_Bug_Test.cpp
diff options
context:
space:
mode:
authorErik Sohns <eriksohns@fastmail.net>2015-12-03 03:37:48 +0100
committerErik Sohns <eriksohns@fastmail.net>2015-12-03 03:37:48 +0100
commit7acfc9e6f746a4b57f5e62847218a1552ea6be52 (patch)
tree1490e051ca30400db4d2e37d34531bbf10f376ea /ACE/tests/Recursive_Condition_Bug_Test.cpp
parentde13b795434877ad71f77a74180c2a01141083b2 (diff)
downloadATCD-7acfc9e6f746a4b57f5e62847218a1552ea6be52.tar.gz
repaired include strategy for ace/Synch.h (prerequisite to solving template instantiation issues on Win32)
Diffstat (limited to 'ACE/tests/Recursive_Condition_Bug_Test.cpp')
-rw-r--r--ACE/tests/Recursive_Condition_Bug_Test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/tests/Recursive_Condition_Bug_Test.cpp b/ACE/tests/Recursive_Condition_Bug_Test.cpp
index 1513b583c5e..c2b98b3c92b 100644
--- a/ACE/tests/Recursive_Condition_Bug_Test.cpp
+++ b/ACE/tests/Recursive_Condition_Bug_Test.cpp
@@ -14,14 +14,14 @@
*/
//=============================================================================
-
-#include "test_config.h"
+#include "ace/Activation_Queue.h"
#include "ace/OS_NS_sys_time.h"
+#include "ace/Synch.h"
#include "ace/Task_T.h"
-#include "ace/Activation_Queue.h"
#include "ace/Timer_Heap.h"
#include "ace/Timer_Queue_Adapters.h"
-#include "ace/Condition_Recursive_Thread_Mutex.h"
+
+#include "test_config.h"
// *NOTE*: explicit template instantiation required here...
template class ACE_Condition<ACE_Recursive_Thread_Mutex>;