1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-24 12:44:10 +01:00

Codefix: missing space between close parenthesis and open curly brace

This commit is contained in:
Rubidium
2024-04-16 18:44:55 +02:00
committed by rubidium42
parent 48eb9b8bc9
commit b2218e75d4
6 changed files with 7 additions and 7 deletions

View File

@@ -444,7 +444,7 @@ static int *HeightMapMakeHistogram(Height h_min, [[maybe_unused]] Height h_max,
int *hist = hist_buf - h_min;
/* Count the heights and fill the histogram */
for (const Height &h : _height_map.h){
for (const Height &h : _height_map.h) {
assert(h >= h_min);
assert(h <= h_max);
hist[h]++;