Ignore:
Timestamp:
08/13/09 18:57:30 (15 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MArgs.cc

    r9482 r9490  
    182182        if (s->BeginsWith(name))
    183183            return s->Data()+s->Index(name)+name.Length();
    184     return 0;
     184    return "";
    185185}
    186186
     
    230230            return str;
    231231        }
    232     return 0;
     232    return "";
    233233}
    234234
  • trunk/MagicSoft/Mars/mbase/MLut.h

    r9462 r9490  
    5656    // TObject
    5757    void Print(const Option_t *o="") const;
    58     void Print(const Option_t *o, const Option_t *o2) const { Print(o); }
     58    void Print(const Option_t *o, Option_t *) const         { Print(o); }
     59    void Print(const Option_t *o, Int_t) const              { Print(o); }
     60    void Print(const Option_t *o, const char*, Int_t) const { Print(o); }
     61    void Print(const Option_t *o, TPRegexp&, Int_t) const   { Print(o); }
    5962
    6063    ClassDef(MLut, 1) // A simple and fast easy-to-use look-up-table
  • trunk/MagicSoft/Mars/mbase/MStatusArray.h

    r9026 r9490  
    3939
    4040    void Print(Option_t *o="") const;
    41     void Print(const Option_t *o, Option_t *) const { Print(o); }
     41    void Print(const Option_t *o, Option_t *) const         { Print(o); }
     42    void Print(const Option_t *o, Int_t) const              { Print(o); }
     43    void Print(const Option_t *o, const char*, Int_t) const { Print(o); }
     44    void Print(const Option_t *o, TPRegexp&, Int_t) const   { Print(o); }
    4245
    4346    TObject *FindObject(const char *object, const char *base) const;
Note: See TracChangeset for help on using the changeset viewer.