summaryrefslogtreecommitdiff
path: root/ACE/examples/Web_Crawler/Iterators.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Web_Crawler/Iterators.h')
-rw-r--r--ACE/examples/Web_Crawler/Iterators.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/examples/Web_Crawler/Iterators.h b/ACE/examples/Web_Crawler/Iterators.h
index 936af00cc4d..a799f97f286 100644
--- a/ACE/examples/Web_Crawler/Iterators.h
+++ b/ACE/examples/Web_Crawler/Iterators.h
@@ -32,7 +32,7 @@ class URL_Iterator
{
public:
/// "virtual" destructor.
- virtual int destroy (void);
+ virtual int destroy ();
// = Iterator methods.
/// Pass back the next <string> that hasn't been seen yet. Returns 0
@@ -41,7 +41,7 @@ public:
protected:
/// C++ destructor.
- virtual ~URL_Iterator (void);
+ virtual ~URL_Iterator ();
};
/**