summaryrefslogtreecommitdiff
path: root/ACE/examples/APG/Containers/DLList.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/APG/Containers/DLList.cpp')
-rw-r--r--ACE/examples/APG/Containers/DLList.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/examples/APG/Containers/DLList.cpp b/ACE/examples/APG/Containers/DLList.cpp
index dc8f25b7638..0de893dd330 100644
--- a/ACE/examples/APG/Containers/DLList.cpp
+++ b/ACE/examples/APG/Containers/DLList.cpp
@@ -13,14 +13,14 @@ typedef ACE_DLList<DataElement> MyList;
class ListTest
{
public:
- int run (void);
+ int run ();
void displayList (MyList & list); // Display all elements.
void destroyList (MyList& list); // Destroy all elements.
};
// Listing 2
// Listing 3 code/ch05
int
-ListTest::run (void)
+ListTest::run ()
{
ACE_TRACE ("ListTest::run");