Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/PhysiCell_utilities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ void copy_file_to_output(std::string filename)
std::cout << "Copying " << filename << " to output folder." << std::endl;
// copy the file to the output folder
std::string basename = filename;
size_t found = basename.find_last_of("/"); // find the end of the path
size_t found = basename.find_last_of("/\\");
if (found != std::string::npos)
{
basename = basename.substr(found + 1);
Expand Down
Loading