1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 15:24:30 +01:00

Updated Coding Style (markdown)

Duncan
2021-01-08 20:06:14 +00:00
parent e78050487c
commit 3d69f0272a

@@ -84,6 +84,9 @@ static Peep* GetLastGuest()
peep = peep->next;
}
/// Always use the explicit auto* over auto
auto* peep2 = peep;
/// Avoid comments that describe what the code says, e.g.
// Returns the peep
return peep;