Skip to content

Commit aaf1c89

Browse files
committed
cleaned
1 parent 1648aa9 commit aaf1c89

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/nyx/raw_tiff.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class RawTiffTileLoader : public RawFormatLoader
9090
default:
9191
message =
9292
"Tile Loader ERROR: The data format is not supported for unsigned integer, number bits per pixel = "
93-
+ bitsPerSample_;
93+
+ std::to_string (bitsPerSample_);
9494
throw (std::runtime_error(message));
9595
}
9696
break;

src/nyx/workflow_pythonapi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ namespace Nyxus
9898
if (write_apache)
9999
{
100100
env.arrow_stream = ArrowOutputStream();
101-
auto [status, msg] = env.arrow_stream.create_arrow_file (saveOption, get_arrow_filename(outputPath, env.nyxus_result_fname, saveOption), Nyxus::get_header(env), env.resultOptions.noval());
101+
auto [status, msg] = env.arrow_stream.create_arrow_file (saveOption, get_arrow_filename(outputPath, env.nyxus_result_fname, saveOption), Nyxus::get_header(env));
102102
if (!status)
103103
return { "error creating Arrow file: " + msg.value() };
104104
}

0 commit comments

Comments
 (0)