Move the 'SHIRE' d'tor into the class definition.
authorwarlord <warlord@cb58f699-b61c-0410-a6fe-9272a202ed29>
Mon, 10 Jan 2005 17:58:31 +0000 (17:58 +0000)
committerwarlord <warlord@cb58f699-b61c-0410-a6fe-9272a202ed29>
Mon, 10 Jan 2005 17:58:31 +0000 (17:58 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-sp/trunk@1293 cb58f699-b61c-0410-a6fe-9272a202ed29

shib-target/shib-target.h

index 96b1a5a..8915f1e 100644 (file)
@@ -482,7 +482,7 @@ namespace shibtarget {
     {
     public:
         SHIRE(const IApplication* app) { m_st = new ShibTarget(app); }
-        ~SHIRE();
+        ~SHIRE() { delete m_st; }
         
         // Get the session cookie name and properties for the application
         std::pair<const char*,const char*> getCookieNameProps() const