]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSIntMap.cxx
SPD pre-processor update (H. Tydesjo)
[u/mrichter/AliRoot.git] / ITS / AliITSIntMap.cxx
index 024989f23d6fb36152f4c695b1b82bd7fcd8cfc8..ba04a25da8f97efcf03fc3350439ed195987ae9f 100644 (file)
@@ -18,7 +18,7 @@ AliITSIntMap::AliITSIntMap(const AliITSIntMap& imap):
   fFirst(0)
 {
   // copy constructor
-  for (Int_t index=0; index<imap.fNrEntries; index++) {
+  for (UInt_t index=0; index<imap.fNrEntries; index++) {
     this->Insert(imap.GetKey(index),imap.GetVal(index));
   }
 }
@@ -30,7 +30,7 @@ AliITSIntMap& AliITSIntMap::operator=(const AliITSIntMap& imap) {
   // assignment operator
   if (this!=&imap) {
     this->Clear();
-    for (Int_t index=0; index<imap.fNrEntries; index++) {
+    for (UInt_t index=0; index<imap.fNrEntries; index++) {
       this->Insert(imap.GetKey(index),imap.GetVal(index));
     }
   }