• H
    Replace "uint" type with uint32 or unsigned int. · ce33af22
    Heikki Linnakangas 提交于
    "uint" is not a standard C type, so it might not be available on all
    platforms. Indeed, we had a typedef for WIN32 for that. But there's no reason
    to use "uint", might as well just use the C standard "unsigned int", or the
    PostgreSQL-specific uint32. Makes the intention more clear too, IMHO.
    ce33af22
gpdbwrappers.cpp 42.4 KB