Fossil SCM
Correct commit that had mistake in macro definition in [36e7558a11598].
Commit
427c34feeada882e826e535422ad505894a6792b
Parent
36e7558a11598f3…
1 file changed
+1
-3
+1
-3
| --- src/config.h | ||
| +++ src/config.h | ||
| @@ -230,10 +230,8 @@ | ||
| 230 | 230 | #endif |
| 231 | 231 | |
| 232 | 232 | /* |
| 233 | 233 | ** Number of elements in an array |
| 234 | 234 | */ |
| 235 | -#ifndef fossil_sizeof | |
| 236 | -# define count(X) (sizeof(X)/sizeof(X[0])) | |
| 237 | -#endif | |
| 235 | +#define count(X) (sizeof(X)/sizeof(X[0])) | |
| 238 | 236 | |
| 239 | 237 | #endif /* _RC_COMPILE_ */ |
| 240 | 238 |
| --- src/config.h | |
| +++ src/config.h | |
| @@ -230,10 +230,8 @@ | |
| 230 | #endif |
| 231 | |
| 232 | /* |
| 233 | ** Number of elements in an array |
| 234 | */ |
| 235 | #ifndef fossil_sizeof |
| 236 | # define count(X) (sizeof(X)/sizeof(X[0])) |
| 237 | #endif |
| 238 | |
| 239 | #endif /* _RC_COMPILE_ */ |
| 240 |
| --- src/config.h | |
| +++ src/config.h | |
| @@ -230,10 +230,8 @@ | |
| 230 | #endif |
| 231 | |
| 232 | /* |
| 233 | ** Number of elements in an array |
| 234 | */ |
| 235 | #define count(X) (sizeof(X)/sizeof(X[0])) |
| 236 | |
| 237 | #endif /* _RC_COMPILE_ */ |
| 238 |