1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

add missing parentheses

This commit is contained in:
Steffen Vogel 2022-08-30 12:18:57 -04:00
parent 9ef01d068e
commit d6c7e69866

View file

@ -381,8 +381,9 @@ Dma::isMemoryBlockAccesible(const MemoryBlock &mem, const std::string &interface
try {
mm.findPath(getMasterAddrSpaceByInterface(interface), mem.getAddrSpaceId());
} catch (const std::out_of_range&)
} catch (const std::out_of_range&) {
return false; // Not (yet) accessible
}
return true;
}