summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthrall <thrall@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-07-15 18:20:27 +0000
committerthrall <thrall@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-07-15 18:20:27 +0000
commit559713a5d1a0cbe65ebc27d7ffcb3e4f5fb364a1 (patch)
tree7e472a9fd7a6d7d4defba6101b7335200ff0eb0d
parent9b13c5299360a86a4baa357b0a3f359151fba591 (diff)
downloadATCD-559713a5d1a0cbe65ebc27d7ffcb3e4f5fb364a1.tar.gz
Made destructor non-inline
-rw-r--r--TAO/orbsvcs/tests/EC_Config/TestConfig.cpp11
-rw-r--r--TAO/orbsvcs/tests/EC_Config/TestConfig.h4
2 files changed, 13 insertions, 2 deletions
diff --git a/TAO/orbsvcs/tests/EC_Config/TestConfig.cpp b/TAO/orbsvcs/tests/EC_Config/TestConfig.cpp
new file mode 100644
index 00000000000..37be921b867
--- /dev/null
+++ b/TAO/orbsvcs/tests/EC_Config/TestConfig.cpp
@@ -0,0 +1,11 @@
+// $Id$
+
+#include /**/ "TestConfig.h"
+
+namespace TestConfig {
+
+Test_Config::~Test_Config (void)
+{
+}
+
+} /* namespace TestConfig */
diff --git a/TAO/orbsvcs/tests/EC_Config/TestConfig.h b/TAO/orbsvcs/tests/EC_Config/TestConfig.h
index 8294348537f..4067ce2e18b 100644
--- a/TAO/orbsvcs/tests/EC_Config/TestConfig.h
+++ b/TAO/orbsvcs/tests/EC_Config/TestConfig.h
@@ -97,9 +97,9 @@ class Test_Config {
// implementing this interface would be used to configure the EC in that case.
//
public:
- Test_Config (void) {};
+ Test_Config (void) {}
- virtual ~Test_Config (void) {};
+ virtual ~Test_Config (void);
virtual int configure (TCFG_SET_WPTR configs) = 0;
// Configures the back-end. Each test_config_t in the set specifies