We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7a3144 commit 0a756faCopy full SHA for 0a756fa
matlab/src/cpp/arrow/matlab/tabular/proxy/table.cc
@@ -169,11 +169,10 @@ libmexclass::proxy::MakeResult Table::make(
169
} else {
170
const auto method_name_utf16 = std::u16string(method[0]);
171
MATLAB_ASSIGN_OR_ERROR(const auto method_name_utf8,
172
- arrow::util::UTF16StringToUTF8(method_name_utf16),
173
- error::UNICODE_CONVERSION_ERROR_ID);
+ arrow::util::UTF16StringToUTF8(method_name_utf16),
+ error::UNICODE_CONVERSION_ERROR_ID);
174
const std::string error_msg = "Unknown make method: " + method_name_utf8;
175
- return libmexclass::error::Error{error::TABLE_MAKE_UNKNOWN_METHOD,
176
- error_msg};
+ return libmexclass::error::Error{error::TABLE_MAKE_UNKNOWN_METHOD, error_msg};
177
}
178
179
0 commit comments