Skip to content

Commit

Permalink
chg: commented out unused errmsg
Browse files Browse the repository at this point in the history
fix: dangling else
  • Loading branch information
mmklee committed Nov 16, 2012
1 parent ab6f346 commit 7bbf173
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions libfac/charset/charset.cc
Original file line number Diff line number Diff line change
Expand Up @@ -235,13 +235,15 @@ contract( const ListCFList & cs){
jitem=j.getItem();
if ( ! same( iitem, jitem ) )
if ( ! member(jitem, mem))
{
if ( contractsub(iitem, jitem) ){
ts.append(jitem); mem.append(jitem);
}
else
if ( contractsub(jitem, iitem) ){
ts.append(iitem);
}
}
}
}
return Minus(cs,ts);
Expand Down
2 changes: 1 addition & 1 deletion libfac/factor/Factor.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////
static const char * errmsg = "\nYou found a bug!\nPlease inform singular@mathematik.uni-kl.de\nPlease include above information and your input (the ideal/polynomial and characteristic) in your bug-report.\nThank you.";
/*static const char * errmsg = "\nYou found a bug!\nPlease inform singular@mathematik.uni-kl.de\nPlease include above information and your input (the ideal/polynomial and characteristic) in your bug-report.\nThank you.";*/
///////////////////////////////////////////////////////////////////////////////
#include <string.h>
// FACTORY - Includes
Expand Down
2 changes: 1 addition & 1 deletion libfac/factor/SqrFree.cc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///////////////////////////////////////////////////////////////////////////////
// emacs edit mode for this file is -*- C++ -*-
/* $Id$ */
static const char * errmsg = "\nYou found a bug!\nPlease inform singular@mathematik.uni-kl.de\n Please include above information and your input (the ideal/polynomial and characteristic) in your bug-report.\nThank you.";
/*static const char * errmsg = "\nYou found a bug!\nPlease inform singular@mathematik.uni-kl.de\n Please include above information and your input (the ideal/polynomial and characteristic) in your bug-report.\nThank you.";*/
///////////////////////////////////////////////////////////////////////////////
// FACTORY - Includes
#include<factory.h>
Expand Down

0 comments on commit 7bbf173

Please sign in to comment.