Ignore:
Timestamp:
Jan 4, 2006, 2:36:47 PM (20 years ago)
Author:
ansari
Message:

Modifs (ajout this->) pour compilation avec g++ 4 (V >= 3.4) - Reza 4 Jan 2006

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/SkyMap/sphericalmap.h

    r1375 r2885  
    3838
    3939// Overloading of () to access pixel number k.
    40 inline T& operator()(int k) {return(PixVal(k));}
    41 inline T  const& operator()(int k) const {return(PixVal(k));}
    42 inline T& operator()(double theta,double phi) {return(PixValSph(theta,phi));};
    43 inline T  const& operator()(double theta,double phi) const {return(PixValSph(theta,phi));};
     40inline T& operator()(int k) {return(this->PixVal(k));}
     41inline T  const& operator()(int k) const {return(this->PixVal(k));}
     42inline T& operator()(double theta,double phi) {return(this->PixValSph(theta,phi));};
     43inline T  const& operator()(double theta,double phi) const {return(this->PixValSph(theta,phi));};
    4444
    4545// index characterizing the size pixelization : m for SphereThetaPhi
Note: See TracChangeset for help on using the changeset viewer.