You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I attempted to build on Mac OS X, using both clang and gcc, and ran into the following error:
novoht.cpp:426:37: error: member reference base type 'fpos_t' (aka 'long long')
is not a structure or union
fprintf(dbfile, "%ld,", plist->pos.__pos);
It appears that NoVoHT assumes that it knows something about the internal structure of "fpos_t" that apparently does not hold on Mac OS X. Since fpos_t is supposed to be an opaque data structure and its internals are not supposed to be depended upon, it would be good if there was an alternate method of doing whatever this part of the code is trying to do.
The text was updated successfully, but these errors were encountered:
dmzimmerman
changed the title
ZHT code depends on assumptions about internal structure of fpos_t
NoVoHT depends on assumptions about internal structure of fpos_t
May 11, 2016
I attempted to build on Mac OS X, using both clang and gcc, and ran into the following error:
It appears that NoVoHT assumes that it knows something about the internal structure of "fpos_t" that apparently does not hold on Mac OS X. Since fpos_t is supposed to be an opaque data structure and its internals are not supposed to be depended upon, it would be good if there was an alternate method of doing whatever this part of the code is trying to do.
The text was updated successfully, but these errors were encountered: