Skip to content

Commit

Permalink
fix implict type conversion for msvc
Browse files Browse the repository at this point in the history
  • Loading branch information
nyoungbq committed Apr 19, 2024
1 parent 357826f commit 5f3a9d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ bool Is2DFormat(const fs::path& fileName)
template <typename PixelT, uint32 Dimensions>
Result<> WriteAsOneFile(itk::Image<PixelT, Dimensions>& image, const fs::path& filePath /*, const IFilter::MessageHandler& messanger*/)
{
AtomicFile atomicFile(filePath);
AtomicFile atomicFile(filePath.string());
auto tempPath = atomicFile.tempFilePath();
try
{
Expand Down

0 comments on commit 5f3a9d4

Please sign in to comment.