X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=TPC%2FAliDigits.cxx;h=a1c2fdc8d0acd465e9a20bbb85aacdfe3b8246e4;hb=39c8eb58c2808dbef3cb13c80df593d364d50e18;hp=f22c53f940ea38f4c18e9765e6f5d48da151ba73;hpb=73042f0190050b5b5f317a6327d5ae1849e730d5;p=u%2Fmrichter%2FAliRoot.git diff --git a/TPC/AliDigits.cxx b/TPC/AliDigits.cxx index f22c53f940e..a1c2fdc8d0a 100644 --- a/TPC/AliDigits.cxx +++ b/TPC/AliDigits.cxx @@ -16,6 +16,9 @@ /* $Log$ +Revision 1.3 2000/06/30 12:07:49 kowal2 +Updated from the TPC-PreRelease branch + Revision 1.2.4.3 2000/06/26 07:39:42 kowal2 Changes to obey the coding rules @@ -110,8 +113,13 @@ AliDigits::~AliDigits() { // //default destructor - if (fIndex !=0 ) fIndex->Delete();; - if (fElements != 0) fElements->Delete(); + if (fIndex !=0 ) { + delete fIndex; + } + if (fElements != 0) { + delete fElements; + } + }