-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove unuseful yuni string separator #1788
Conversation
Watermelon AI SummaryAI Summary deactivated by a-zakir GitHub PRs
Antares_Simulator is an open repo and Watermelon will serve it for free. |
Watermelon AI SummaryAI Summary deactivated by a-zakir GitHub PRs
Antares_Simulator is an open repo and Watermelon will serve it for free. |
see comments in #1791 |
Quality Gate failedFailed conditions 1 Security Hotspot See analysis details on SonarCloud Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
std::ostringstream tmpPath; | ||
tmpPath << fs::temp_directory_path().string() << Yuni::IO::SeparatorAsString << filename; | ||
return tmpPath.str(); | ||
return (CreateRandomSubDir(std::filesystem::temp_directory_path()) / filename).string().c_str(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This changes the behavior. How about keeping the same behavior as previously ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see Pr reviews
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and we may remove the last 2 commits
No description provided.