Coding Style

Coding Style SigmaVision Introduction This document is the official documentation for the coding style to be used in every project from SigmaVision. This document may be shared and used as reference. Braces Braces Style : Braces must be written in the Allman indentation style, which is this one : //Allman indentation while(1) { foo += bar; } The following indentation styles are not allowed : while(1){ foo += bar; } while(1) { foo += bar; } while(1) { foo += bar; } while(1) { foo += bar;} Braces Indentation : Content between braces must be indented with 4 spaces....

September 26, 2022