Changeset a9f584 in git
- Timestamp:
- Sep 29, 2010, 3:16:44 PM (13 years ago)
- Branches:
- (u'spielwiese', 'd1ba061a762c62d3a25159d8da8b6e17332291fa')
- Children:
- 5d594a96114bdb26100c2b8e2ae329a7529f0e45
- Parents:
- 1cce476261db2ed619587e1afbc7252f6a5f79da
- git-author:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2010-09-29 15:16:44+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:29+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
coeffs/ffields.cc
r1cce47 ra9f584 855 855 if(p->GFChar > (2<<15)) 856 856 { 857 Werror("illegal characteristic"); // no exceptions :(((858 return ;857 Werror("illegal characteristic"); 858 return TRUE; 859 859 } 860 860 … … 864 864 { 865 865 Werror("Sorry: illegal size: %u ^ %u", p->GFChar, p->GFDegree ); 866 return ; // EXCEPTION? OR RETURN AN ERROR!???866 return TRUE; 867 867 } 868 868 … … 874 874 { 875 875 Werror("Sorry: cannot init lookup table!"); 876 return ;876 return TRUE; 877 877 } 878 878 … … 882 882 r->ch = r->m_nfCharP; 883 883 assume( r->m_nfPlus1Table != NULL ); 884 885 } 884 885 return FALSE; 886 887 }
Note: See TracChangeset
for help on using the changeset viewer.