Changeset 6caad65 in git for numeric/mpr_base.h


Ignore:
Timestamp:
Aug 10, 2012, 6:43:54 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
865b200481936511016703447e348179c16cfe12
Parents:
ab56fc8edb1c11c3240a168051119e14e5bed4a8
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-08-10 18:43:54+02:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-08-15 19:58:16+02:00
Message:
warnings elimination

chg: uninitialized fake variables
chg: "'const' type qualifier on return type has no effect" for numeric/
chg: more minor warnings elimination
File:
1 edited

Legend:

Unmodified
Added
Removed
  • numeric/mpr_base.h

    rab56fc r6caad65  
    2929  virtual ~resMatrixBase() {}
    3030
    31   virtual const ideal getMatrix() { return NULL; }
    32   virtual const ideal getSubMatrix() { return NULL; }
     31  virtual ideal getMatrix() { return NULL; }
     32  virtual ideal getSubMatrix() { return NULL; }
    3333
    34   virtual const poly getUDet( const number* evpoint ) { return NULL; }
     34  virtual poly getUDet( const number* evpoint ) { return NULL; }
    3535
    36   virtual const number getDetAt( const number* evpoint ) { return NULL; }
    37   virtual const number getSubDet() { return NULL; }
     36  virtual number getDetAt( const number* evpoint ) { return NULL; }
     37  virtual number getSubDet() { return NULL; }
    3838
    39   virtual const long getDetDeg() const { return totDeg; }
     39  virtual long getDetDeg() { return totDeg; }
    4040
    41   virtual const IStateType initState() const { return istate; }
     41  virtual IStateType initState() const { return istate; }
    4242
    4343protected:
Note: See TracChangeset for help on using the changeset viewer.