Using a static generator to generete uuids
This time explicitly writing the type.
This commit is contained in:
parent
0ecf7b1ec7
commit
844f569d22
|
@ -57,7 +57,8 @@ path getBinDirectory() {
|
|||
|
||||
path getTempFilePath() {
|
||||
path tempDirectory = boost::filesystem::temp_directory_path();
|
||||
string fileName = to_string(boost::uuids::random_generator()());
|
||||
static boost::uuids::random_generator generateUuid;
|
||||
string fileName = to_string(generateUuid());
|
||||
return tempDirectory / fileName;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue