New data types/names; removed OUTRANGE macro.

date	99.07.12.23.26.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 17:14:47 +00:00
parent 00d60f1588
commit a096f2fc91

View File

@ -156,8 +156,8 @@ NsPushCurrentScope (
else
{
if (OUTRANGE (Type, NsTypeNames) ||
BadType == NsTypeNames[Type])
if ((Type > INTERNAL_TYPE_MAX) ||
(BadType == NsTypeNames[Type]))
{
/* type code out of range */
@ -257,7 +257,8 @@ NsPopCurrent (
FUNCTION_TRACE ("NsPopCurrent");
if (OUTRANGE (Type, NsTypeNames) || BadType == NsTypeNames[Type])
if ((Type > INTERNAL_TYPE_MAX) ||
(BadType == NsTypeNames[Type]))
{
/* type code out of range */