Skip to content

Commit 392f7e0

Browse files
committed
Fixed non debug build compilation.
1 parent 90c955b commit 392f7e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/net_utilities.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ T StatisticalRingBuffer<T>::average_rounded() const {
392392
// initialized. However, this is wrong just for the first run.
393393
// I'm leaving it as is because solve it mean do more operations. All this
394394
// just to get the right value for the first few frames.
395-
return Math::round(double(avg_sum) / double(data.size()));
395+
return round(double(avg_sum) / double(data.size()));
396396
#endif
397397
}
398398

0 commit comments

Comments
 (0)