From d5959656998aab93f6cb441ba0d94a5ad7709305 Mon Sep 17 00:00:00 2001 From: lightningterror <18107717+lightningterror@users.noreply.github.com> Date: Sat, 26 Apr 2025 21:04:37 +0200 Subject: [PATCH] Updated 08 Code Formatting Guidelines (markdown) --- 08-Code-Formatting-Guidelines.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/08-Code-Formatting-Guidelines.md b/08-Code-Formatting-Guidelines.md index 0335499..36bdc08 100644 --- a/08-Code-Formatting-Guidelines.md +++ b/08-Code-Formatting-Guidelines.md @@ -44,7 +44,8 @@ It is highly recommended to prefix protected class members with `m_`; such as `m void DoSomething() { Function1(); Function2(); var += 1; } // Good... -void DoSomething() { +void DoSomething() +{ Function1(); Function2(); var += 1; } ```