Skip to content
Snippets Groups Projects
Commit b027d4b6 authored by ARMAR-6 User's avatar ARMAR-6 User
Browse files

static cast width and height

parent 8d4fc131
No related branches found
No related tags found
No related merge requests found
......@@ -115,8 +115,8 @@ namespace armarx::aron::codegenerator::cpp::generator
variantAccessor = ARON_VARIANT_RETURN_ACCESSOR + "_" + escaped_accessor;
block_if_data->addLine(
variantAccessor + " = " + ARON_WRITER_ACCESSOR + ".writeNDArray({" + cppAccessor +
nextEl() + "width, " + cppAccessor + nextEl() + "height, " +
variantAccessor + " = " + ARON_WRITER_ACCESSOR + ".writeNDArray({ static_cast<int>(" + cppAccessor +
nextEl() + "width), static_cast<int>(" + cppAccessor + nextEl() + "height), " +
std::to_string(std::get<1>(VoxelType2Cpp.at(type.getVoxelType()))) + "}, " + "\"" +
std::get<0>(VoxelType2Cpp.at(type.getVoxelType())) + "\", " +
"reinterpret_cast<const unsigned char*>(" + cppAccessor + nextEl() +
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment