From 3d69f0272a4a512f2dee1f775b3a8ee2cdfe4c2e Mon Sep 17 00:00:00 2001 From: Duncan Date: Fri, 8 Jan 2021 20:06:14 +0000 Subject: [PATCH] Updated Coding Style (markdown) --- Coding-Style.md | 3 +++ 1 file changed, 3 insertions(+) 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;