--- libgig/trunk/src/Serialization.cpp 2017/12/03 16:03:34 3391 +++ libgig/trunk/src/Serialization.cpp 2017/12/03 17:49:22 3392 @@ -21,6 +21,10 @@ * MA 02111-1307 USA * ***************************************************************************/ +// enable implementation specific declarations in Serialization.h required to +// build this C++ unit, which should be ignored in the public API though +#define LIBGIG_SERIALIZATION_INTERNAL 1 + #include "Serialization.h" #include @@ -1414,7 +1418,7 @@ return (time_t) i; } - DataType _popDataTypeBlob(const char*& p, const char* end) { + static DataType _popDataTypeBlob(const char*& p, const char* end) { _Blob blob = _decodeBlob(p, end); p = blob.p; end = blob.end;