summaryrefslogtreecommitdiff
path: root/ACE/examples/APG/Containers/Allocator.cpp
diff options
context:
space:
mode:
authorKnut Petter Svendsen <knut@altuma.no>2022-09-13 22:57:39 +0200
committerKnut Petter Svendsen <knut@altuma.no>2022-09-13 22:57:39 +0200
commit3da59eac098c1ef9d2c98f2079185ff35c3b6105 (patch)
tree379c29e09bf55597fe6740cd163478cd1204a181 /ACE/examples/APG/Containers/Allocator.cpp
parentfe03724176dcfd20e0f9a6e493198469242be6b6 (diff)
downloadATCD-3da59eac098c1ef9d2c98f2079185ff35c3b6105.tar.gz
Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'ACE/examples/APG/Containers/Allocator.cpp')
-rw-r--r--ACE/examples/APG/Containers/Allocator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/examples/APG/Containers/Allocator.cpp b/ACE/examples/APG/Containers/Allocator.cpp
index bfa0bf0f510..0cb42e3d45d 100644
--- a/ACE/examples/APG/Containers/Allocator.cpp
+++ b/ACE/examples/APG/Containers/Allocator.cpp
@@ -8,7 +8,7 @@ class StackExample
public:
// Illustrate all the differnet
// types of stacks provided by ACE.
- int run (void);
+ int run ();
private:
// Illustrate the use of an unbounded stack.
@@ -16,7 +16,7 @@ private:
};
// Listing 1 code/ch05
-int StackExample::run (void)
+int StackExample::run ()
{
ACE_TRACE ("StackExample::run");