Skip to content

Commit

Permalink
Merge pull request #84 from sameeul/fix_fs_namespace
Browse files Browse the repository at this point in the history
Fix filesystem namespace
  • Loading branch information
hsidky authored Dec 14, 2022
2 parents 00d7bc9 + 4004f48 commit f6d515b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Nyxus",
"version": "0.4.1",
"containerId": "polusai/nyxus:0.4.1",
"containerId": "polusai/nyxus:0.4.2",
"title": "Nyxus feature extraction",
"description": "Nyxus feature extractor",
"author": "friskluft + hsidky",
Expand Down
2 changes: 1 addition & 1 deletion src/nyx/helpers/timing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void Stopwatch::save_stats (const std::string & fpath)
// "nrois" and "roiarea" containing values 10 and 500 respectively.)

std::vector<std::string> vars, vals; // experiment variables and their values
std::filesystem::path fpa (fpath);
fs::path fpa (fpath);
std::string stm = fpa.stem().string();
if (stm.find('=') != std::string::npos)
{
Expand Down
2 changes: 1 addition & 1 deletion src/nyx/scan_fastloader_way.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ namespace Nyxus
VERBOSLVL1(Stopwatch::print_stats();)

// Details - also to a file
std::filesystem::path p (theSegFname);
fs::path p (theSegFname);
VERBOSLVL1(Stopwatch::save_stats (theEnvironment.output_dir + "/" + p.stem().string() + "_nyxustiming.csv");)
#endif
}
Expand Down
2 changes: 1 addition & 1 deletion src/nyx/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
#define VERSIONH_INCLUDED

#define PROJECT_NAME "Nyxus"
#define PROJECT_VER "0.4.1"
#define PROJECT_VER "0.4.2"

#endif // VERSIONH_INCLUDED

0 comments on commit f6d515b

Please sign in to comment.