summaryrefslogtreecommitdiff
path: root/ACE/tests
diff options
context:
space:
mode:
authorKnut Petter Svendsen <knut@altuma.no>2022-09-09 10:38:55 +0200
committerKnut Petter Svendsen <knut@altuma.no>2022-09-09 16:08:01 +0200
commit6f72892d61032d294fe1387a36ec6e04e9efa9c2 (patch)
treeefd140d6ea35c16825922b8373a2fbf227cdc370 /ACE/tests
parent6d7b6be10a2c2be4fc47bdd2e285657fcc4d60fd (diff)
downloadATCD-6f72892d61032d294fe1387a36ec6e04e9efa9c2.tar.gz
Fix trailing newline in class declarations
Diffstat (limited to 'ACE/tests')
-rw-r--r--ACE/tests/Array_Map_Test.cpp1
-rw-r--r--ACE/tests/Bug_3911_Regression_Test.cpp1
-rw-r--r--ACE/tests/Dev_Poll_Reactor_Echo_Test.cpp1
-rw-r--r--ACE/tests/Dev_Poll_Reactor_Test.cpp3
-rw-r--r--ACE/tests/MT_Reactor_Timer_Test.h2
-rw-r--r--ACE/tests/MT_Reference_Counted_Event_Handler_Test.cpp7
-rw-r--r--ACE/tests/MT_Reference_Counted_Notify_Test.cpp1
-rw-r--r--ACE/tests/Proactor_Test.cpp1
-rw-r--r--ACE/tests/Proactor_UDP_Test.cpp1
-rw-r--r--ACE/tests/RB_Tree_Test.h1
-rw-r--r--ACE/tests/Reactor_Remove_Resume_Test.cpp2
-rw-r--r--ACE/tests/Reactor_Remove_Resume_Test_Dev_Poll.cpp2
-rw-r--r--ACE/tests/Reference_Counted_Event_Handler_Test.cpp1
-rw-r--r--ACE/tests/Service_Config_DLL.h1
14 files changed, 0 insertions, 25 deletions
diff --git a/ACE/tests/Array_Map_Test.cpp b/ACE/tests/Array_Map_Test.cpp
index 2e48f16b4d4..c3926c3f45c 100644
--- a/ACE/tests/Array_Map_Test.cpp
+++ b/ACE/tests/Array_Map_Test.cpp
@@ -384,7 +384,6 @@ public:
private:
unsigned int * refcount_;
-
};
// --------
diff --git a/ACE/tests/Bug_3911_Regression_Test.cpp b/ACE/tests/Bug_3911_Regression_Test.cpp
index 39657681b56..7eb5463d201 100644
--- a/ACE/tests/Bug_3911_Regression_Test.cpp
+++ b/ACE/tests/Bug_3911_Regression_Test.cpp
@@ -135,7 +135,6 @@ public:
return shared;
};
-
};
ShmemMan* ShmemMan::c_instance = 0;
diff --git a/ACE/tests/Dev_Poll_Reactor_Echo_Test.cpp b/ACE/tests/Dev_Poll_Reactor_Echo_Test.cpp
index f33a16646cd..3aacc120cff 100644
--- a/ACE/tests/Dev_Poll_Reactor_Echo_Test.cpp
+++ b/ACE/tests/Dev_Poll_Reactor_Echo_Test.cpp
@@ -391,7 +391,6 @@ public:
return result;
}
-
};
// ----------------------------------------------------
diff --git a/ACE/tests/Dev_Poll_Reactor_Test.cpp b/ACE/tests/Dev_Poll_Reactor_Test.cpp
index 14cfa9e27e8..643d7120aab 100644
--- a/ACE/tests/Dev_Poll_Reactor_Test.cpp
+++ b/ACE/tests/Dev_Poll_Reactor_Test.cpp
@@ -61,7 +61,6 @@ public:
private:
unsigned int call_count_;
-
};
@@ -82,7 +81,6 @@ public:
private:
unsigned int call_count_;
-
};
// ----------------------------------------------------
@@ -360,7 +358,6 @@ public:
return result;
}
-
};
// ----------------------------------------------------
diff --git a/ACE/tests/MT_Reactor_Timer_Test.h b/ACE/tests/MT_Reactor_Timer_Test.h
index 966a48e1500..fe8ffeebce4 100644
--- a/ACE/tests/MT_Reactor_Timer_Test.h
+++ b/ACE/tests/MT_Reactor_Timer_Test.h
@@ -66,7 +66,6 @@ private:
#if defined ACE_HAS_THREADS
ACE_Thread_Mutex lock_;
#endif /* ACE_HAS_THREADS */
-
};
/**
@@ -104,7 +103,6 @@ private:
int input_seen_;
int notify_seen_;
size_t timers_fired_;
-
};
#endif /* ACE_TESTS_MT_REACTOR_TIMER_TEST_H */
diff --git a/ACE/tests/MT_Reference_Counted_Event_Handler_Test.cpp b/ACE/tests/MT_Reference_Counted_Event_Handler_Test.cpp
index f9d2d2156c6..913359d55e9 100644
--- a/ACE/tests/MT_Reference_Counted_Event_Handler_Test.cpp
+++ b/ACE/tests/MT_Reference_Counted_Event_Handler_Test.cpp
@@ -243,7 +243,6 @@ public:
ACE_HANDLE handle_;
Connection_Cache &connection_cache_;
-
};
class Connection_Cache
@@ -368,7 +367,6 @@ public:
int svc () override;
ACE_Reactor &reactor_;
-
};
class Receiver : public ACE_Task_Base
@@ -398,7 +396,6 @@ public:
int nested_upcalls_;
int nested_upcalls_level_;
-
};
Receiver::Receiver (ACE_Thread_Manager &thread_manager,
@@ -557,7 +554,6 @@ public:
ACE_Reactor &reactor_;
int nested_upcalls_;
-
};
Connector::Connector (ACE_Thread_Manager &thread_manager,
@@ -786,7 +782,6 @@ public:
int run_receiver_thread_;
int nested_upcalls_;
-
};
Invocation_Thread::Invocation_Thread (ACE_Thread_Manager &thread_manager,
@@ -986,7 +981,6 @@ public:
int make_invocations_;
int run_receiver_thread_;
-
};
Close_Socket_Thread::Close_Socket_Thread (ACE_Thread_Manager &thread_manager,
@@ -1115,7 +1109,6 @@ public:
ACE_Reactor &reactor_;
Connection_Cache &connection_cache_;
-
};
Purger_Thread::Purger_Thread (ACE_Thread_Manager &thread_manager,
diff --git a/ACE/tests/MT_Reference_Counted_Notify_Test.cpp b/ACE/tests/MT_Reference_Counted_Notify_Test.cpp
index a1ba7346316..42b5e6e153f 100644
--- a/ACE/tests/MT_Reference_Counted_Notify_Test.cpp
+++ b/ACE/tests/MT_Reference_Counted_Notify_Test.cpp
@@ -47,7 +47,6 @@ public:
ACE_Event_Handler::Reference_Count add_reference () override;
ACE_Event_Handler::Reference_Count remove_reference () override;
-
};
Reference_Counted_Event_Handler::Reference_Counted_Event_Handler ()
diff --git a/ACE/tests/Proactor_Test.cpp b/ACE/tests/Proactor_Test.cpp
index 04bea2e7779..dd7ca693aea 100644
--- a/ACE/tests/Proactor_Test.cpp
+++ b/ACE/tests/Proactor_Test.cpp
@@ -190,7 +190,6 @@ private:
ACE_SYNCH_RECURSIVE_MUTEX lock_;
ACE_Thread_Semaphore sem_;
ACE_Proactor * proactor_;
-
};
int
diff --git a/ACE/tests/Proactor_UDP_Test.cpp b/ACE/tests/Proactor_UDP_Test.cpp
index 9f4cbd438fb..7a26cc9d6a1 100644
--- a/ACE/tests/Proactor_UDP_Test.cpp
+++ b/ACE/tests/Proactor_UDP_Test.cpp
@@ -184,7 +184,6 @@ private:
ACE_SYNCH_RECURSIVE_MUTEX lock_;
ACE_Thread_Semaphore sem_;
ACE_Proactor * proactor_;
-
};
int
diff --git a/ACE/tests/RB_Tree_Test.h b/ACE/tests/RB_Tree_Test.h
index 1b9d52fa91c..b394dba83c5 100644
--- a/ACE/tests/RB_Tree_Test.h
+++ b/ACE/tests/RB_Tree_Test.h
@@ -101,5 +101,4 @@ private:
/// Order of indices in the key and item arrays.
int *order_index_;
-
};
diff --git a/ACE/tests/Reactor_Remove_Resume_Test.cpp b/ACE/tests/Reactor_Remove_Resume_Test.cpp
index e70af6e1f09..f56f5848803 100644
--- a/ACE/tests/Reactor_Remove_Resume_Test.cpp
+++ b/ACE/tests/Reactor_Remove_Resume_Test.cpp
@@ -51,7 +51,6 @@ private:
// If the reactor closes the event handler before it gets the okay,
// we will issue an error.
bool & okay_to_close_;
-
};
Bogus_Handler::Bogus_Handler (ACE_Reactor * reactor,
@@ -146,7 +145,6 @@ private:
// Are we running the event handler suspension or removal test?
bool suspension_test_;
-
};
Bad_Handler::Bad_Handler (ACE_Reactor * reactor,
diff --git a/ACE/tests/Reactor_Remove_Resume_Test_Dev_Poll.cpp b/ACE/tests/Reactor_Remove_Resume_Test_Dev_Poll.cpp
index 943304eaf49..e54ed4e6a62 100644
--- a/ACE/tests/Reactor_Remove_Resume_Test_Dev_Poll.cpp
+++ b/ACE/tests/Reactor_Remove_Resume_Test_Dev_Poll.cpp
@@ -55,7 +55,6 @@ private:
// If the reactor closes the event handler before it gets the okay,
// we will issue an error.
bool & okay_to_close_;
-
};
Bogus_Handler::Bogus_Handler (ACE_Reactor * reactor,
@@ -150,7 +149,6 @@ private:
// Are we running the event handler suspension or removal test?
bool suspension_test_;
-
};
Bad_Handler::Bad_Handler (ACE_Reactor * reactor,
diff --git a/ACE/tests/Reference_Counted_Event_Handler_Test.cpp b/ACE/tests/Reference_Counted_Event_Handler_Test.cpp
index 7e2081b837d..7ca38ec0b2e 100644
--- a/ACE/tests/Reference_Counted_Event_Handler_Test.cpp
+++ b/ACE/tests/Reference_Counted_Event_Handler_Test.cpp
@@ -781,7 +781,6 @@ public:
ACE_Pipe pipe_;
int &events_;
-
};
Closed_In_Upcall_Event_Handler::Closed_In_Upcall_Event_Handler (int &events)
diff --git a/ACE/tests/Service_Config_DLL.h b/ACE/tests/Service_Config_DLL.h
index ca66ec748db..64ae2a3386b 100644
--- a/ACE/tests/Service_Config_DLL.h
+++ b/ACE/tests/Service_Config_DLL.h
@@ -56,7 +56,6 @@ private:
/// Directives to be passed to be processed by the Service
/// Configurator in separate threads.
ACE_TCHAR directive_[2][BUFSIZ];
-
};
/**