Oops. C++ comments in a C progam is not allowed.

git-svn-id: svn://10.0.0.236/trunk@47058 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cls%seawood.org
1999-09-12 14:07:51 +00:00
parent cf93ffc8e9
commit c80b557414

View File

@@ -286,7 +286,7 @@ PR_IMPLEMENT(void)
PL_VectorRemove(PLVector* v, PRUint32 index, PRUint32 count)
{
PRUint32 moveCount;
//PR_ASSERT(count >= 0);
/* PR_ASSERT(count >= 0); */
PR_ASSERT(index + count <= v->size);
/* just remove a range */
@@ -308,8 +308,8 @@ PL_VectorAssertValid(PLVector* v)
PR_ASSERT(v->maxSize == 0);
}
else {
//PR_ASSERT(v->size >= 0);
//PR_ASSERT(v->maxSize >= 0);
/* PR_ASSERT(v->size >= 0); */
/* PR_ASSERT(v->maxSize >= 0); */
PR_ASSERT(v->size <= v->maxSize);
}
}