summaryrefslogtreecommitdiff
path: root/ACE/examples/APG/Containers/Queues.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/APG/Containers/Queues.cpp')
-rw-r--r--ACE/examples/APG/Containers/Queues.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/examples/APG/Containers/Queues.cpp b/ACE/examples/APG/Containers/Queues.cpp
index 6a08136ea72..a0dfda6274c 100644
--- a/ACE/examples/APG/Containers/Queues.cpp
+++ b/ACE/examples/APG/Containers/Queues.cpp
@@ -7,19 +7,19 @@ class QueueExample
{
public:
// Illustrate the various ACE Queues.
- int run (void);
+ int run ();
private:
// Illustrate the ACE unbounded queue
// that has copies of the data elements.
- int runStackUnboundedQueue (void);
+ int runStackUnboundedQueue ();
// Illustrate the ACE unbounded queue
// with pointers to elements on the heap.
- int runHeapUnboundedQueue (void);
+ int runHeapUnboundedQueue ();
};
-int QueueExample::run (void)
+int QueueExample::run ()
{
ACE_TRACE ("QueueExample::run");
@@ -45,7 +45,7 @@ int QueueExample::run (void)
}
// Listing 1 code/ch05
-int QueueExample::runStackUnboundedQueue (void)
+int QueueExample::runStackUnboundedQueue ()
{
ACE_TRACE ("QueueExample::runStackUnboundedQueue");
@@ -78,7 +78,7 @@ int QueueExample::runStackUnboundedQueue (void)
}
// Listing 1
// Listing 2 code/ch05
-int QueueExample::runHeapUnboundedQueue (void)
+int QueueExample::runHeapUnboundedQueue ()
{
ACE_TRACE ("QueueExample::runHeapUnboundedQueue");