Replace warnings with debug, errors or printfs:

-To catch any missing cases/functions used.
-To prevent users reporting warnings as bugs

svn-id: r18682
This commit is contained in:
Travis Howell 2005-08-14 02:04:26 +00:00
parent a820400f8c
commit 18febcb94d
17 changed files with 53 additions and 58 deletions

View file

@ -618,10 +618,7 @@ int32 LogicHEfootball::dispatch(int op, int numArgs, int32 *args) {
default:
LogicHE::dispatch(op, numArgs, args);
warning("Tell me how to reproduce it");
assert(0);
break;
error("Tell me how to reproduce it");
}
return res;