Skip to content

Commit 804c7a7

Browse files
committed
Address build failures
1 parent 2f373d1 commit 804c7a7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/plugins/intel_npu/src/common/src/filtered_config.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ void FilteredConfig::addOrUpdateInternal(std::string key, std::string value) {
9797
}
9898

9999
std::string FilteredConfig::getInternal(std::string key) const {
100-
auto log = Logger::global().clone("Config");
101100
if (_internal_compiler_configs.count(key) == 0) {
102101
OPENVINO_THROW(std::string("Internal compiler option " + key + " does not exist! "));
103102
}
@@ -120,7 +119,7 @@ std::string FilteredConfig::toStringForCompiler() const {
120119
const auto& key = it->first;
121120

122121
// Only include available configs which options have OptionMode::Compile or OptionMode::Both
123-
if (isAvailable(key)) {
122+
if (isAvailable(key.data())) {
124123
if (_desc->has(key)) {
125124
if (_desc->get(key).mode() != OptionMode::RunTime) {
126125
resultStream << key << "=\"" << it->second->toString() << "\"";

0 commit comments

Comments
 (0)