Skip to content

Commit d3d25b9

Browse files
author
wejoncy
committed
format
1 parent e82f3e4 commit d3d25b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

onnxruntime/core/providers/coreml/coreml_execution_provider.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ CoreMLExecutionProvider::GetCapability(const onnxruntime::GraphViewer& graph_vie
6767
user_provided_key = graph_viewer.GetGraph().GetModel().MetaData().at(kCOREML_CACHE_KEY);
6868
if (user_provided_key.size() > 32 ||
6969
std::any_of(user_provided_key.begin(), user_provided_key.end(),
70-
[](unsigned char c) { return !std::isalnum(c); })) {
70+
[](unsigned char c) { return !std::isalnum(c); })) {
7171
user_provided_key = std::to_string(std::hash<std::string>{}(user_provided_key));
7272
}
7373
} else {

0 commit comments

Comments
 (0)