Formatting

This commit is contained in:
argent0 2018-07-19 14:30:12 -03:00 committed by GitHub
parent 844f569d22
commit 0d1300a217
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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