PR here:
super simple fix: just move that Random to be an optional constructor argument.
Old:
//.h
Uuid();
//.cpp
Uuid::Uuid()
{
Random r;
new:
//.h
Uuid(Random r = Random());
//.cpp
Uuid::Uuid()
{
PR here:
super simple fix: just move that Random to be an optional constructor argument.
Old:
//.h
Uuid();
//.cpp
Uuid::Uuid()
{
Random r;
new:
//.h
Uuid(Random r = Random());
//.cpp
Uuid::Uuid()
{