diff --git a/Coding-Style.md b/Coding-Style.md index aa139c5..8475a88 100644 --- a/Coding-Style.md +++ b/Coding-Style.md @@ -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;