Changeset 1d768d in git for Singular/extra.cc


Ignore:
Timestamp:
Sep 14, 2011, 2:28:44 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
04759787eb1aa29f19cdfe61219edb878dc6db6b
Parents:
d8943718fef8cc5c08528be5fe63c8682ee71700
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-09-14 14:28:44+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:48+01:00
Message:
ADD: system("r"/"p") should not emit error in release build
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    rd894371 r1d768d  
    24042404      else
    24052405  /*==================== poly debug ==================================*/
    2406   #ifdef RDEBUG
    24072406        if(strcmp(sys_cmd,"p")==0)
    24082407        {
     2408#  ifdef RDEBUG
    24092409          p_DebugPrint((poly)h->Data(), currRing);
     2410#  else
     2411          Warn("Sorry: not available for release build!");
     2412#  endif
    24102413          return FALSE;
    24112414        }
    24122415        else
    2413   #endif
    24142416  /*==================== ring debug ==================================*/
    2415   #ifdef RDEBUG
    24162417        if(strcmp(sys_cmd,"r")==0)
    24172418        {
     2419#  ifdef RDEBUG
    24182420          rDebugPrint((ring)h->Data());
     2421#  else
     2422          Warn("Sorry: not available for release build!");
     2423#  endif
    24192424          return FALSE;
    24202425        }
    24212426        else
    2422   #endif
    24232427  /*==================== changeRing ========================*/
    24242428        /* The following code changes the names of the variables in the
Note: See TracChangeset for help on using the changeset viewer.