mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
Fix for Mac compilation on the size_t uint64_t types
This commit is contained in:
parent
655be8ed76
commit
74f451715f
@ -563,7 +563,7 @@ class BinaryIO {
|
|||||||
if (ILDG.is_ILDG){
|
if (ILDG.is_ILDG){
|
||||||
// use C-LIME to populate the record
|
// use C-LIME to populate the record
|
||||||
#ifdef HAVE_LIME
|
#ifdef HAVE_LIME
|
||||||
size_t sizeFO = sizeof(fileObj);
|
uint64_t sizeFO = sizeof(fileObj);
|
||||||
limeReaderSeek(ILDG.LR, g_idx*sizeFO, SEEK_SET);
|
limeReaderSeek(ILDG.LR, g_idx*sizeFO, SEEK_SET);
|
||||||
int status = limeReaderReadData((void *)&fileObj, &sizeFO, ILDG.LR);
|
int status = limeReaderReadData((void *)&fileObj, &sizeFO, ILDG.LR);
|
||||||
#endif
|
#endif
|
||||||
@ -762,7 +762,7 @@ class BinaryIO {
|
|||||||
|
|
||||||
if (ILDG.is_ILDG) {
|
if (ILDG.is_ILDG) {
|
||||||
#ifdef HAVE_LIME
|
#ifdef HAVE_LIME
|
||||||
size_t sizeFO = sizeof(fileObj);
|
uint64_t sizeFO = sizeof(fileObj);
|
||||||
limeWriterSeek(ILDG.LW, g_idx*sizeFO, SEEK_SET);
|
limeWriterSeek(ILDG.LW, g_idx*sizeFO, SEEK_SET);
|
||||||
int status = limeWriteRecordData((void *)&fileObj, &sizeFO, ILDG.LW);
|
int status = limeWriteRecordData((void *)&fileObj, &sizeFO, ILDG.LW);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user