summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/unit/Trading/Interpreter/Interpreter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/unit/Trading/Interpreter/Interpreter.cpp')
-rw-r--r--TAO/orbsvcs/tests/unit/Trading/Interpreter/Interpreter.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/orbsvcs/tests/unit/Trading/Interpreter/Interpreter.cpp b/TAO/orbsvcs/tests/unit/Trading/Interpreter/Interpreter.cpp
index 54a67ee5c7d..9fb6d6cf573 100644
--- a/TAO/orbsvcs/tests/unit/Trading/Interpreter/Interpreter.cpp
+++ b/TAO/orbsvcs/tests/unit/Trading/Interpreter/Interpreter.cpp
@@ -9,7 +9,7 @@ class Literal_Visitor: public TAO_Constraint_Visitor
{
public:
Literal_Visitor (Literal_Interpreter<T>* interp);
- virtual ~Literal_Visitor (void);
+ virtual ~Literal_Visitor ();
virtual int visit_constraint (TAO_Unary_Constraint*);
@@ -55,7 +55,7 @@ Literal_Visitor<T>::Literal_Visitor (Literal_Interpreter<T>* interp)
}
template<class T>
-Literal_Visitor<T>::~Literal_Visitor (void)
+Literal_Visitor<T>::~Literal_Visitor ()
{
}
@@ -76,8 +76,8 @@ template<class T>
class Literal_Interpreter: public TAO_Interpreter
{
public:
- Literal_Interpreter (void);
- virtual ~Literal_Interpreter (void);
+ Literal_Interpreter ();
+ virtual ~Literal_Interpreter ();
bool test (const char* str,
T expected);
@@ -91,12 +91,12 @@ private:
};
template<class T>
-Literal_Interpreter<T>::Literal_Interpreter (void)
+Literal_Interpreter<T>::Literal_Interpreter ()
{
}
template<class T>
-Literal_Interpreter<T>::~Literal_Interpreter (void)
+Literal_Interpreter<T>::~Literal_Interpreter ()
{
}