From c9eca3d7bda7c403232c307c13d61638ca9d5089 Mon Sep 17 00:00:00 2001 From: alibrary Date: Thu, 11 Mar 2004 17:21:47 +0000 Subject: [PATCH] Syntax fixes for the xlc compiler on MacOSX --- PMD/AliPMDRecPoint.cxx | 2 +- TRD/AliTRDrecPoint.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PMD/AliPMDRecPoint.cxx b/PMD/AliPMDRecPoint.cxx index 7941b28da50..213f405ba83 100644 --- a/PMD/AliPMDRecPoint.cxx +++ b/PMD/AliPMDRecPoint.cxx @@ -46,7 +46,7 @@ void AliPMDRecPoint::AddDigit(AliDigitNew & digit) if ( fMulDigit >= fMaxDigit ) { // increase the size of the list - int * tempo = new ( int[fMaxDigit*=2] ) ; + int * tempo = new int[fMaxDigit*=2]; Int_t index ; diff --git a/TRD/AliTRDrecPoint.cxx b/TRD/AliTRDrecPoint.cxx index 9f7a99319ed..8183394f5de 100644 --- a/TRD/AliTRDrecPoint.cxx +++ b/TRD/AliTRDrecPoint.cxx @@ -96,7 +96,7 @@ void AliTRDrecPoint::AddDigit(Int_t digit) // Increase the size of the list if necessary if (fMulDigit >= fMaxDigit) { fMaxDigit *= 2; - int *tempo = new (int[fMaxDigit]); + int *tempo = new int[fMaxDigit]; Int_t index; for (index = 0; index < fMulDigit; index++) tempo[index] = fDigitsList[index]; -- 2.39.3