diff options
| author | Richard Brooksby | 2012-03-27 18:12:52 +0100 |
|---|---|---|
| committer | Richard Brooksby | 2012-03-27 18:12:52 +0100 |
| commit | ecb147b98f04d2bf193da1a874ea2f2392bf0e66 (patch) | |
| tree | ed6cd1ed2f453b2a4448bc414f4554b544a82792 /mps/code/mpmtypes.h | |
| parent | 382d044e970ec1beae9593d6a3ae22156e53a8a4 (diff) | |
| download | emacs-ecb147b98f04d2bf193da1a874ea2f2392bf0e66.tar.gz emacs-ecb147b98f04d2bf193da1a874ea2f2392bf0e66.zip | |
Consistently passing closure sizes as size_t and not casting back and forth to size or anything else.
Copied from Perforce
Change: 177817
ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code/mpmtypes.h')
| -rw-r--r-- | mps/code/mpmtypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mps/code/mpmtypes.h b/mps/code/mpmtypes.h index b424cb6d341..d1aaa1e4cf2 100644 --- a/mps/code/mpmtypes.h +++ b/mps/code/mpmtypes.h | |||
| @@ -211,7 +211,7 @@ typedef void (*PoolFramePopPendingMethod)(Pool pool, Buffer buf, | |||
| 211 | AllocFrame frame); | 211 | AllocFrame frame); |
| 212 | typedef void (*PoolWalkMethod)(Pool pool, Seg seg, | 212 | typedef void (*PoolWalkMethod)(Pool pool, Seg seg, |
| 213 | FormattedObjectsStepMethod f, | 213 | FormattedObjectsStepMethod f, |
| 214 | void *v, unsigned long s); | 214 | void *v, size_t s); |
| 215 | typedef void (*PoolFreeWalkMethod)(Pool pool, FreeBlockStepMethod f, void *p); | 215 | typedef void (*PoolFreeWalkMethod)(Pool pool, FreeBlockStepMethod f, void *p); |
| 216 | typedef BufferClass (*PoolBufferClassMethod)(void); | 216 | typedef BufferClass (*PoolBufferClassMethod)(void); |
| 217 | typedef Res (*PoolDescribeMethod)(Pool pool, mps_lib_FILE *stream); | 217 | typedef Res (*PoolDescribeMethod)(Pool pool, mps_lib_FILE *stream); |