Skip to content

Commit 13d857f

Browse files
committed
Remove unused exception variable
1 parent 53f034d commit 13d857f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/intel_npu/tools/single-image-test/argument_parse_helpers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ utils::PerLayerValueMap utils::parsePerLayerValues(const std::string& str, doubl
240240
try {
241241
double value = std::stod(valueStr);
242242
result[layerName] = value;
243-
} catch (const std::exception& e) {
243+
} catch (const std::exception&) {
244244
std::cerr << "Warning: Failed to parse value '" << valueStr << "' for layer '" << layerName << "'" << std::endl;
245245
}
246246
}

0 commit comments

Comments
 (0)