Beispiel #1
0
int64_t SearchResult::getSpeedPerSlot() const noexcept {
	return totalSlots > 0 ? getConnectionInt() / totalSlots : 0;
}
Beispiel #2
0
int64_t SearchResult::getSpeedPerSlot() const {
	return slots > 0 ? getConnectionInt() / slots : 0;
}