Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 213d963a authored by gsell's avatar gsell
Browse files

Merge branch '754-boost-filesystem-extension-is-deprecated-in-new-boost-versions' into 'master'

Resolve "boost::filesystem::extension() is deprecated in new boost versions"

Closes #754

See merge request !612
parents 12d657fe fbf17ea6
No related branches found
No related tags found
1 merge request!612Resolve "boost::filesystem::extension() is deprecated in new boost versions"
......@@ -656,7 +656,7 @@ void OpalSimulation::cleanUp(const std::vector<std::string>& keep) {
{
fs::directory_iterator it{p};
while (it != fs::directory_iterator{}) {
std::string extension = Util::toUpper(fs::extension(it->path().filename()));
std::string extension = Util::toUpper(it->path().extension().string());
// remove .
extension.erase(0, 1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment