Removed static reference to uuid generator.

This commit is contained in:
Aner Lucero 2018-07-18 18:32:29 -03:00
parent 5a6630f4b2
commit 0ecf7b1ec7
1 changed files with 1 additions and 2 deletions

View File

@ -57,8 +57,7 @@ path getBinDirectory() {
path getTempFilePath() { path getTempFilePath() {
path tempDirectory = boost::filesystem::temp_directory_path(); path tempDirectory = boost::filesystem::temp_directory_path();
static auto generateUuid = boost::uuids::random_generator(); string fileName = to_string(boost::uuids::random_generator()());
string fileName = to_string(generateUuid());
return tempDirectory / fileName; return tempDirectory / fileName;
} }