Difference between revisions of "Code style"

From PioneerWiki
Jump to: navigation, search
(Remove obsolete Code Style page (merged with Coding Conventions))
(Tag: New redirect)
 
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Tabs & spacing ==
+
#REDIRECT [[Coding Conventions]]
  
* Hard tabs, 4-space aligned.
+
This page has been merged with [[Coding Conventions]].
* Inner spaces after tabs to align arguments on multiple lines, etc
 
 
 
== Constants ==
 
 
 
* Prefer <tt>static const</tt> over <tt>#define</tt> wherever possible
 
 
 
== Name style ==
 
 
 
* Classes: FooBar
 
* Methods: FooBar
 
* Class members: m_fooBar
 
* Static members: s_fooBar
 
* Constants: FOO_BAR
 

Latest revision as of 02:46, 11 May 2020

Redirect to:

This page has been merged with Coding Conventions.