From caa28c27c274c014151eac97b279c176eb357609 Mon Sep 17 00:00:00 2001 From: Guille Gutierrez Date: Wed, 19 Apr 2023 11:17:26 -0400 Subject: [PATCH] Update 'C++GUIDE.md' Correct indentation position --- C++GUIDE.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/C++GUIDE.md b/C++GUIDE.md index bad8f81..6832489 100644 --- a/C++GUIDE.md +++ b/C++GUIDE.md @@ -82,6 +82,10 @@ namespace sample { ``` +### Indentation + +We indent with 2 spaces as it's considered more consistent when using different editors and operationg systems while provide enoug readability for the hierarchies. + ### Usage of using-clause Usage of using-clause (#using) it's discouraged, as it's considered a bad practice that may cause namespace poisoning. @@ -133,10 +137,6 @@ namespace sample { Ensure that your imports are used and remove any unused. -### Indentation - -We indent with 2 spaces as it's considered more consistent when using different editors and operationg systems while provide enoug readability for the hierarchies. - ### Multiplatform CERC team is aiming to create platform independent open software, therefore the use of platform specific libraries is discouraged, if such thing can't be avoided, try to provide platform alternatives by using compiler directives.