Changeset bc2606 in git for libpolys/polys/nc/summator.cc


Ignore:
Timestamp:
Nov 29, 2012, 11:02:11 PM (11 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
ca5cfe83988bd636394cc6b49509717ad3b17700
Parents:
e17f69c6be6204d38b721577676eee640f77d78c
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-11-29 23:02:11+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-11-29 23:08:27+01:00
Message:
Compiler warnings elimination
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/nc/summator.cc

    re17f69 rbc2606  
    3333
    3434CPolynomialSummator::CPolynomialSummator(const ring& rBaseRing, bool bUsePolynomial):
    35     m_bUsePolynomial(bUsePolynomial), m_basering(rBaseRing)
     35    m_basering(rBaseRing), m_bUsePolynomial(bUsePolynomial)
    3636{
    3737#ifdef RDEBUG
     
    183183
    184184
    185 CPolynomialSummator::CPolynomialSummator(const CPolynomialSummator& b): m_bUsePolynomial(b.m_bUsePolynomial), m_basering(b.m_basering)
     185CPolynomialSummator::CPolynomialSummator(const CPolynomialSummator& b):
     186    m_basering(b.m_basering), m_bUsePolynomial(b.m_bUsePolynomial)
    186187{
    187188//  try{
Note: See TracChangeset for help on using the changeset viewer.