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 b743c13 commit a7941dfCopy full SHA for a7941df
extension/module/module.cpp
@@ -241,11 +241,11 @@ runtime::Result<std::vector<runtime::EValue>> Module::execute(
241
auto& inputs = methods_.at(method_name).inputs;
242
243
ET_CHECK_OR_RETURN_ERROR(
244
- input_values.size() <= inputs.size(),
245
- InvalidArgument,
246
- "input size: %zu does not match method input size: %zu",
247
- input_values.size(),
248
- inputs.size());
+ input_values.size() <= inputs.size(),
+ InvalidArgument,
+ "input size: %zu does not match method input size: %zu",
+ input_values.size(),
+ inputs.size());
249
for (size_t i = 0; i < input_values.size(); ++i) {
250
if (!input_values[i].isNone()) {
251
inputs[i] = input_values[i];
0 commit comments