From 7d4fdad6f650bea3c29caab6c1b4f91eb43503d0 Mon Sep 17 00:00:00 2001 From: Ryzerth Date: Tue, 27 Apr 2021 20:16:01 +0200 Subject: [PATCH] More additions to contributing.md --- contributing.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/contributing.md b/contributing.md index 27c1f078..75e69876 100644 --- a/contributing.md +++ b/contributing.md @@ -29,6 +29,10 @@ int myFunction() { Note: If it makes the code cleaner, remember to use the `?` keyword instead of a `if else` statement. +## Pointers + +Please use `type* name` for pointers. + ## Structure Headers and their associated C++ files shall be in the same directory. All headers must use `#pragma once` instead of other include guards. Only include files in a header that are being used in that header. Include the rest in the associated C++ file.