Using a static generator to generete uuids

This time explicitly writing the type.
This commit is contained in:
argent0 2018-07-19 14:29:26 -03:00 committed by GitHub
parent 0ecf7b1ec7
commit 844f569d22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}