Skip to content

Commit

Permalink
Remove trailing whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevingurney committed Oct 31, 2023
1 parent a2657b1 commit 1b51111
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions matlab/src/cpp/arrow/matlab/array/proxy/list_array.cc
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ namespace arrow::matlab::array::proxy {
const mda::TypedArray<std::uint8_t> validation_mode_mda = args[0]["ValidationMode"];
const auto validation_mode_integer = uint8_t(validation_mode_mda[0]);
// Convert integer representation to ValidationMode enum.
const auto validation_mode = static_cast<ValidationMode>(validation_mode_integer);
const auto validation_mode = static_cast<ValidationMode>(validation_mode_integer);
switch (validation_mode) {
case ValidationMode::None: {
// Do nothing.
Expand All @@ -133,7 +133,7 @@ namespace arrow::matlab::array::proxy {
const auto msg = "Unsupported ValidationMode enumeration value: " + std::to_string(validation_mode_integer);
context.error = libmexclass::error::Error{error::ARRAY_VALIDATE_UNSUPPORTED_ENUM, msg};
return;
}
}
}
}

Expand Down

0 comments on commit 1b51111

Please sign in to comment.