summaryrefslogtreecommitdiff
path: root/ACE/examples/Smart_Pointers/Gadget.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Smart_Pointers/Gadget.h')
-rw-r--r--ACE/examples/Smart_Pointers/Gadget.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/examples/Smart_Pointers/Gadget.h b/ACE/examples/Smart_Pointers/Gadget.h
index 9fca7c5c22c..a6150d152bc 100644
--- a/ACE/examples/Smart_Pointers/Gadget.h
+++ b/ACE/examples/Smart_Pointers/Gadget.h
@@ -32,10 +32,10 @@ public:
/// Remove a random part from the gadget. Responsibility for ownership of the
/// part is automatically returned to the caller since we are returning a
/// Gadget_Part_var.
- virtual Gadget_Part_var remove_part (void) = 0;
+ virtual Gadget_Part_var remove_part () = 0;
/// Ask the gadget to print information about the parts that it contains.
- virtual void list_parts (void) = 0;
+ virtual void list_parts () = 0;
};
// The Gadget_var smart pointer has shared (reference counted) ownership