Ignore:
Timestamp:
03/01/01 16:27:34 (24 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mraw/MRawEvtData.cc

    r654 r656  
    301301    // Enhance array by the size which we'll read now
    302302    //
    303     Byte_t lo[nlo];
    304     Byte_t hi[nhi];
     303    Byte_t *lo = new Byte_t[nlo];
     304    Byte_t *hi = new Byte_t[nhi];
    305305
    306306    const int npixhi = fHiGainPixId->GetSize();
     
    340340        //}
    341341    }
    342 }
    343 
     342    delete lo;
     343    delete hi;
     344}
     345
Note: See TracChangeset for help on using the changeset viewer.