Skip to content

Commit 4a04ff0

Browse files
committed
lint
1 parent 8572b90 commit 4a04ff0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

onnxruntime/test/shared_lib/test_version.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ TEST(CApiTest, VersionConsistencyWithApiVersion) {
1919

2020
auto to_uint32_t = [](const std::string& s) -> std::optional<uint32_t> {
2121
uint32_t result{};
22-
if(std::from_chars(s.data(), s.data() + s.size(), result).ec == std::errc{}) {
23-
return result;
22+
if (std::from_chars(s.data(), s.data() + s.size(), result).ec == std::errc{}) {
23+
return result;
2424
}
2525
return std::nullopt;
2626
};

0 commit comments

Comments
 (0)