From 4ae30a9aa5f9b8e96aa93f1455225c235c7f2121 Mon Sep 17 00:00:00 2001 From: macbishop Date: Sat, 18 Sep 2004 14:53:47 +0000 Subject: [PATCH] Had to make ~Arg() public because it won't be possible to delete Arg*s if it is not, and we want that (I think). --- include/tclap/Arg.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/tclap/Arg.h b/include/tclap/Arg.h index cfe7273..03123a9 100644 --- a/include/tclap/Arg.h +++ b/include/tclap/Arg.h @@ -151,13 +151,12 @@ class Arg bool valreq, Visitor* v = NULL ); + public: /** * Destructor. */ virtual ~Arg(); - public: - /** * Adds this to the specified list of Args. * \param argList - The list to add this to.