Caching snippets try/catch to make coverity happy (#11005)
This commit is contained in:
parent
2b4ee3d937
commit
857a1ad2af
@ -61,9 +61,12 @@ bool cachingSupported = std::find(caps.begin(), caps.end(), ov::device::capabili
|
|||||||
}
|
}
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
part0();
|
try {
|
||||||
part1();
|
part0();
|
||||||
part2();
|
part1();
|
||||||
part3();
|
part2();
|
||||||
|
part3();
|
||||||
|
} catch (...) {
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user