jrgemignani commented on PR #1227:
URL: https://github.com/apache/age/pull/1227#issuecomment-1716661591

   @MatheusFarias03 If you can also modify the coding standards to state that 
all braces are on their own line, no exceptions. Items inside braces are 
indented 4 spaces, no exceptions. The `switch ` command example in the 
documentation is wrong.
   
   Good:
   ```
   struct xyz
   {
       int x;
       int y;
       int z;
   }
   
   if (blah == blahBlah)
   {
       some_function_call(var);
   }
   
   void some_function(int var)
   {
       some_main_function(var);
   }
   ```
   Bad:
   ```
   struct xyz {
   int x;
   int y;
   int z;
   }
   
   if (blah == blahBlah) {
   some_function_call(var);
   }
   
   void some_function(int var) {
   some_main_function(var);
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to