Skip to content

Commit

Permalink
Fix compiler issue after rebasing
Browse files Browse the repository at this point in the history
  • Loading branch information
sgilmore10 committed Jul 12, 2023
1 parent 35c740f commit 6ad4677
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion matlab/src/cpp/arrow/matlab/array/proxy/timestamp_array.cc
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,9 @@ namespace arrow::matlab::array::proxy {
error::UNICODE_CONVERSION_ERROR_ID);

// extract the time unit
const std::u16string& u16_timeunit = timezone_mda[0];
MATLAB_ASSIGN_OR_ERROR(const auto time_unit,
arrow::matlab::type::timeUnitFromString(units_mda[0]),
arrow::matlab::type::timeUnitFromString(u16_timeunit),
error::UKNOWN_TIME_UNIT_ERROR_ID)

// create the timestamp_type
Expand Down

0 comments on commit 6ad4677

Please sign in to comment.