1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 16:51:06 -07:00

Note an unused parameter

Copied from Perforce
 Change: 18823
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Pekka Pirinen 1997-09-25 18:21:06 +01:00
parent e674b21819
commit 49b4843549

View file

@ -1,6 +1,6 @@
/* impl.c.pooln: NULL POOL
*
* $HopeName: MMsrc!pooln.c(trunk.14) $
* $HopeName: MMsrc!pooln.c(trunk.15) $
* Copyright(C) 1997 The Harlequin Group Limited. All rights reserved.
*
* This is the implementation of the null pool class. Begin null it
@ -10,7 +10,7 @@
#include "mpm.h"
#include "pooln.h"
SRCID(pooln, "$HopeName: MMsrc!pooln.c(trunk.14) $");
SRCID(pooln, "$HopeName: MMsrc!pooln.c(trunk.15) $");
typedef struct PoolNStruct {
@ -268,6 +268,8 @@ Bool PoolNCheck(PoolN poolN)
CHECKL(poolN != NULL);
CHECKD(Pool, &poolN->poolStruct);
CHECKL(poolN->poolStruct.class == &PoolClassNStruct);
UNUSED(poolN); /* impl.c.mpm.check.unused */
return TRUE;
}