From 0f48d4f38c0893c195bad5ee7d69805eeea400c3 Mon Sep 17 00:00:00 2001 From: bunnei Date: Thu, 22 May 2014 10:08:42 -0700 Subject: [PATCH] Updated Coding Style (markdown) --- Coding-Style.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Coding-Style.md b/Coding-Style.md index 0811a0b..64bd8b0 100644 --- a/Coding-Style.md +++ b/Coding-Style.md @@ -13,8 +13,6 @@ Citra is a brand new project, so we have a great opportunity to keep things clea * Variables * lower_case_underscored * Prefix "g_" if global - * Prefix "_" if internal - * Prefix "__" if ultra internal * Classes * CamelCase, "_" may also be used for clarity (e.g. OGL_VideoInterface) * Files/Folders @@ -86,8 +84,6 @@ void FooBar() { case 3: DoSomething(var); return; - // Always break, even after a return - break; default: // Yes, even break for the last case