I'm trying to generate a GUID in a platform agnostic manner, most search results suggest using BOOST or platform specific libraries. I remember once coming across the following snippet and I was wondering if this is a reliable way of generating GUID's:
unsigned int generateGuid()
{
char c;
return (unsigned int)&c;
}
More specifically, does this guarantee a unique value always? And if not, what are some good lightweight and cross-platform approaches of doing this?