Skip to content

Commit d0a4a22

Browse files
authored
[CPU][DEBUG_CAPS] Hotfix for env vars handling (#29477)
### Details: Fix for compilation issue on master branch ### Tickets: - N/A
1 parent f334dcc commit d0a4a22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/intel_cpu/src/utils/debug_caps_config.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ void DebugCapsConfig::readProperties() {
7777
averageCountersPath = envVarValue;
7878
}
7979

80-
if ((envVarValue = readEnv("OV_CPU_MEMORY_STATISTICS_PATH"))) {
80+
if (auto envVarValue = readEnv("OV_CPU_MEMORY_STATISTICS_PATH")) {
8181
memoryStatisticsDumpPath = envVarValue;
8282
}
8383
}

0 commit comments

Comments
 (0)