Changeset 7fe9e13 in git for libpolys/coeffs/bigintmat.h


Ignore:
Timestamp:
Jan 7, 2014, 10:49:14 AM (10 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
458fe5223a24efe5daf71219814103af29a22a4a
Parents:
9dba83b67ef6188c31760d27748664d42a28b6db
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-01-07 10:49:14+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-01-07 11:06:05+01:00
Message:
Renamed NDEBUG -> SING_NDEBUG in order to avoid confusion with GCC macro
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/coeffs/bigintmat.h

    r9dba83b r7fe9e13  
    7171    inline number& operator[](int i)
    7272    {
    73 #ifndef NDEBUG
     73#ifndef SING_NDEBUG
    7474      if((i<0)||(i>=row*col))
    7575      {
     
    8383    inline const number& operator[](int i) const
    8484    {
    85 #ifndef NDEBUG
     85#ifndef SING_NDEBUG
    8686      if((i<0)||(i>=row*col))
    8787      {
     
    157157        n_Delete(&(v[i]), basecoeffs()); v[i] = n;
    158158      }
    159 #ifndef NDEBUG
     159#ifndef SING_NDEBUG
    160160      else
    161161      {
Note: See TracChangeset for help on using the changeset viewer.