SWDEV-563777 - further reduce compilation warnings (#2331)

This change resolves some of the warnings generated during clr builds.
Quiet regular output of doxygen.
Disable non-documented warnings of doxygen.

Signed-off-by: Sebastian Luzynski <Sebastian.Luzynski@amd.com>
This commit is contained in:
sluzynsk-amd
2026-01-27 20:51:16 +01:00
committed by GitHub
parent b7829db10a
commit f37b100c34
5 changed files with 8 additions and 5 deletions
+2 -1
View File
@@ -32,7 +32,8 @@ namespace {
inline bool IsMemPoolValid(MemoryPool* mem_pool) {
bool result = false;
for (auto it : g_devices) {
if (result = it->IsMemoryPoolValid(mem_pool) == true) {
result = it->IsMemoryPoolValid(mem_pool);
if (result) {
break;
}
}