Changeset da97958 in git for Singular/attrib.cc


Ignore:
Timestamp:
Apr 12, 1997, 6:04:49 PM (27 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
2d0ae37b5df992393a7f7f9502a714d92e87d50d
Parents:
3c1510e113d15c0aaeecf4ec6bb59567c10fe4bd
Message:
* hannes: changed Werror to WerroS at same places,
    corrected bugs found by christian gorzel (ring definition,
    vector[intvec], etc)
    changed output: -1x to -x


git-svn-id: file:///usr/local/Singular/svn/trunk@150 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/attrib.cc

    r3c1510 rda97958  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: attrib.cc,v 1.4 1997-04-08 16:49:15 Singular Exp $ */
     4/* $Id: attrib.cc,v 1.5 1997-04-12 16:04:33 Singular Exp $ */
    55
    66/*
     
    326326    if (c->Typ()!=INT_CMD)
    327327    {
    328       Werror("attrib isSB must be int");
     328      WerrorS("attrib isSB must be int");
    329329      return TRUE;
    330330    }
     
    344344    if (c->Typ()!=INT_CMD)
    345345    {
    346       Werror("attrib rank must be int");
     346      WerrorS("attrib `rank` must be int");
    347347      return TRUE;
    348348    }
     
    355355    if (c->Typ()!=INT_CMD)
    356356    {
    357       Werror("D attrib must be int");
     357      WerrorS("attrib `D` must be int");
    358358      return TRUE;
    359359    }
     
    374374        }
    375375      default:
    376         Werror("cannot set attrib D for this type");
     376        WerrorS("cannot set attrib `D` for this type");
    377377    }
    378378  }
     
    390390  if ((a->rtyp!=IDHDL)||(a->e!=NULL))
    391391  {
    392     Werror("object must have a name");
     392    WerrorS("object must have a name");
    393393    return TRUE;
    394394  }
     
    408408  if ((a->rtyp!=IDHDL)||(a->e!=NULL))
    409409  {
    410     Werror("object must have a name");
     410    WerrorS("object must have a name");
    411411    return TRUE;
    412412  }
Note: See TracChangeset for help on using the changeset viewer.