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:
parent
9ef01d068e
commit
d6c7e69866
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue