From b7c0d13953955571b8b31d4d4e1089edb57e95c5 Mon Sep 17 00:00:00 2001 From: Knute Lingaard Date: Thu, 7 Sep 2023 11:39:03 -0500 Subject: [PATCH] Update CodingStyle.md Signed-off-by: Knute Lingaard --- CodingStyle.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CodingStyle.md b/CodingStyle.md index b5c1f56b..8003a1ff 100644 --- a/CodingStyle.md +++ b/CodingStyle.md @@ -42,6 +42,7 @@ If code is found to violate these rules -- please fix it! 1. Do not go nuts with `auto`. This: `auto foo(const auto & in)` is irritating 1. NO TABS. Ever. Never ever. 1. Spaces are 4 + 1. Delete all trailing whitespace 1. Do not use single letter variable names. Not only are these NOT descriptive, searching for their use in a function/class is difficult. 1. Do not use Raw POD types (int, char). Instead use [fixed @@ -131,4 +132,4 @@ namespace olympia sparta::Counter my_stat_; // Named my_stat in the report }; -``` \ No newline at end of file +```