Skip to content

Commit

Permalink
Fix typo in EnvVar class
Browse files Browse the repository at this point in the history
  • Loading branch information
itikhono committed Sep 6, 2024
1 parent d481f34 commit fb6dde8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/src/pass/manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class EnvVar {
std::set<std::string> off = {"0", "false", "off"};
std::set<std::string> on = {"1", "true", "on"};

const auto& val_lower = ov::util::to_lower(var);
const auto& val_lower = ov::util::to_lower(val);
if (off.count(val_lower)) {
m_is_bool = true;
} else if (on.count(val_lower)) {
Expand Down

0 comments on commit fb6dde8

Please sign in to comment.