Skip to content

Commit

Permalink
fix output filename
Browse files Browse the repository at this point in the history
  • Loading branch information
janetournois committed Jun 7, 2024
1 parent 3cef247 commit 283864a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ int main(int argc, char * argv[])

const std::size_t last_dot = output_filename.find_last_of(".");
const std::string output_extension = output_filename.substr(last_dot);
const std::string output_basename = output_filename.substr(0, last_dot - 1);
const std::string output_basename = output_filename.substr(0, last_dot);

CGAL::Timer task_timer; task_timer.start();

Expand Down

0 comments on commit 283864a

Please sign in to comment.