Removed static reference to uuid generator.
This commit is contained in:
parent
5a6630f4b2
commit
0ecf7b1ec7
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue