[GPU] Windows build fix for DEBUG_CAPS (#24259)

### Details:
 - *item1*
 - *...*

### Tickets:
 - 138404
This commit is contained in:
Mingyu Kim 2024-04-29 16:02:44 +09:00 committed by GitHub
parent 2ce0e4a054
commit 279908d925
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -279,7 +279,7 @@ debug_configuration::debug_configuration()
is_valid_range = true;
dump_prof_data_iter_params.start = start;
dump_prof_data_iter_params.end = end;
} catch(const std::exception& ex) {
} catch(const std::exception &) {
is_valid_range = false;
}
}
@ -325,7 +325,7 @@ debug_configuration::debug_configuration()
while (ss >> token) {
try {
dump_iteration.insert(static_cast<int64_t>(std::stol(token)));
} catch(const std::exception& ex) {
} catch(const std::exception &) {
dump_iteration.clear();
GPU_DEBUG_COUT << "OV_GPU_DumpIteration was ignored. It cannot be parsed to integer array." << std::endl;
break;
@ -348,7 +348,7 @@ debug_configuration::debug_configuration()
mem_preallocation_params.max_per_iter_size = std::stol(params[1]);
mem_preallocation_params.max_per_dim_diff = std::stol(params[2]);
mem_preallocation_params.buffers_preallocation_ratio = std::stof(params[3]);
} catch(const std::exception& ex) {
} catch(const std::exception &) {
correct_params = false;
}
}