# # # patch "ChangeLog" # from [99c82ae68a94074775d065a04233d945b5fab5d1] # to [3d2cb26c3f861bb142a55624c66fffd84fe91ddd] # # patch "sanity.cc" # from [5a79c408881d20bbe1df1081c51dfedf49bd8824] # to [eb9f4d9b41e1e2342303e4a618fe5481c10c1eae] # # patch "sanity.hh" # from [e56bf6cd3f576b4ce4ebb9937f4fdaa4ece13367] # to [be515df1539fe9df44d44091a19e7d3b22927bdf] # ============================================================ --- ChangeLog 99c82ae68a94074775d065a04233d945b5fab5d1 +++ ChangeLog 3d2cb26c3f861bb142a55624c66fffd84fe91ddd @@ -1,3 +1,7 @@ +2006-06-03 Matthew Gregan + + * sanity.{cc,hh} (format_base): Add dtor to delete pimpl. + 2006-06-02 Lapo Luchini * po/it.po: Updated and translated a few more strings (95 to go). ============================================================ --- sanity.cc 5a79c408881d20bbe1df1081c51dfedf49bd8824 +++ sanity.cc eb9f4d9b41e1e2342303e4a618fe5481c10c1eae @@ -368,6 +368,11 @@ } +format_base::~format_base() +{ + delete pimpl; +} + format_base & format_base::operator=(format_base const & other) { ============================================================ --- sanity.hh e56bf6cd3f576b4ce4ebb9937f4fdaa4ece13367 +++ sanity.hh be515df1539fe9df44d44091a19e7d3b22927bdf @@ -106,6 +106,7 @@ impl *pimpl; format_base() : pimpl(NULL) {} + ~format_base(); format_base(format_base const & other); format_base & operator=(format_base const & other); explicit format_base(char const * pattern);