fix(sdk): Avoid narrowing conversion

This commit is contained in:
Dennis Klein
2021-06-23 19:06:59 +02:00
committed by Dennis Klein
parent 3702d3bfca
commit 81b1ba1f20
2 changed files with 2 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ auto DDSTopology::GetTopoFile() const -> Path
return file;
}
auto DDSTopology::GetNumRequiredAgents() const -> int
auto DDSTopology::GetNumRequiredAgents() const -> std::size_t
{
return fImpl->fTopo.getRequiredNofAgents();
}