Merge pull request #584 from zetafunction/yet-again-how-does-this-work

Update C++ styleguide
This commit is contained in:
Titus Winters 2020-11-11 08:50:32 -05:00 committed by GitHub
commit d5b5104763
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1693,8 +1693,8 @@ earlier.</p>
<code>protected:</code>, then <code>private:</code>. Omit <code>protected:</code>, then <code>private:</code>. Omit
sections that would be empty.</p> sections that would be empty.</p>
<p>Within each section, generally prefer grouping similar <p>Within each section, prefer grouping similar
kinds of declarations together, and generally prefer the kinds of declarations together, and prefer the
following order: types (including <code>typedef</code>, following order: types (including <code>typedef</code>,
<code>using</code>, and nested structs and classes), <code>using</code>, and nested structs and classes),
constants, factory functions, constructors and assignment constants, factory functions, constructors and assignment
@ -1719,6 +1719,9 @@ a return value and sometimes via output parameters (or in/out parameters).</p>
improve readability, and often provide the same or better improve readability, and often provide the same or better
performance.</p> performance.</p>
<p>Prefer to return by value or, failing that, return by reference.
Avoid returning a pointer unless it can be null.</p>
<p>Parameters are either inputs to the function, outputs from the <p>Parameters are either inputs to the function, outputs from the
function, or both. Input parameters should usually be values function, or both. Input parameters should usually be values
or <code>const</code> references, while non-optional output and or <code>const</code> references, while non-optional output and
@ -2077,9 +2080,7 @@ do use shared ownership, prefer to use
is a tool that reads a source file and identifies many is a tool that reads a source file and identifies many
style errors. It is not perfect, and has both false style errors. It is not perfect, and has both false
positives and false negatives, but it is still a valuable positives and false negatives, but it is still a valuable
tool. False positives can be ignored by putting <code>// tool. </p>
NOLINT</code> at the end of the line or
<code>// NOLINTNEXTLINE</code> in the previous line.</p>
@ -4044,7 +4045,7 @@ and avoid terms that other programmers might find disrespectful or offensive
(such as "master" and "slave", "blacklist" and "whitelist", or "redline"), (such as "master" and "slave", "blacklist" and "whitelist", or "redline"),
even if the terms also have an ostensibly neutral meaning. even if the terms also have an ostensibly neutral meaning.
Similarly, use gender-neutral language unless you're referring Similarly, use gender-neutral language unless you're referring
to a specific person (and using their preferred pronouns). For example, to a specific person (and using their pronouns). For example,
use "they"/"them"/"their" for people of unspecified gender use "they"/"them"/"their" for people of unspecified gender
(<a href="https://apastyle.apa.org/style-grammar-guidelines/grammar/singular-they">even (<a href="https://apastyle.apa.org/style-grammar-guidelines/grammar/singular-they">even
when singular</a>), and "it"/"its" for software, computers, and other when singular</a>), and "it"/"its" for software, computers, and other
@ -4621,7 +4622,7 @@ obvious. For example:</p>
are, what they are used for, and (if unclear) why it needs to be are, what they are used for, and (if unclear) why it needs to be
global. For example:</p> global. For example:</p>
<pre>// The total number of tests cases that we run through in this regression test. <pre>// The total number of test cases that we run through in this regression test.
const int kNumTestCases = 6; const int kNumTestCases = 6;
</pre> </pre>
@ -5178,92 +5179,83 @@ MyType m = { // Here, you could also break before {.
<h3 id="Conditionals">Conditionals</h3> <h3 id="Conditionals">Conditionals</h3>
<p>Each of <code>if</code>, <code>else</code>, and <code>else if</code> <p>In an <code>if</code> statement, including its optional <code>else if</code>
belong on separate lines. There should be a space between and <code>else</code> clauses, put one space between the <code>if</code> and the
the <code>if</code> and the open parenthesis, and between the close opening parenthesis, and between the closing parenthesis and the curly brace (if
parenthesis and the curly brace (if any), but no space between the any), but no spaces between the parentheses and the condition or initializer. If
parentheses and the condition.</p> the optional initializer is present, put a space or newline after the semicolon,
but not before.</p>
<pre>if (condition) { // no spaces inside parentheses <pre class="badcode">if(condition) { // Bad - space missing after IF
... // 2 space indent. if ( condition ) { // Bad - space between the parentheses and the condition
} else if (...) { // The else goes on the same line as the closing brace. if (condition){ // Bad - space missing before {
... if(condition){ // Doubly bad
if (int a = f();a == 10) { // Bad - space missing after the semicolon
</pre>
<p>Use curly braces for the controlled statements following
<code>if</code>, <code>else if</code> and <code>else</code>. Break the line
immediately after the opening brace, and immediately before the closing brace. A
subsequent <code>else</code>, if any, appears on the same line as the preceding
closing brace, separated by a space.</p>
<pre>if (condition) { // no spaces inside parentheses, space before brace
DoOneThing(); // two space indent
DoAnotherThing();
} else if (int a = f(); a != 3) { // closing brace on new line, else on same line
DoAThirdThing(a);
} else { } else {
... DoNothing();
} }
</pre> </pre>
<pre class="badcode">if(condition) { // Bad - space missing after IF. <p>For historical reasons, we allow one exception to the above rules: if an
if ( condition ) { // Bad - space between the parentheses and the condition <code>if</code> statement has no <code>else</code> or <code>else if</code>
if (condition){ // Bad - space missing before {. clauses, then the curly braces for the controlled statement or the line breaks
if(condition){ // Doubly bad. inside the curly braces may be omitted if as a result the entire <code>if</code>
</pre> statement appears on either a single line (in which case there is a space
between the closing parenthesis and the controlled statement) or on two lines
<pre>if (condition) { // Good - proper space after IF and before {. (in which case there is a line break after the closing parenthesis and there are
</pre> no braces). For example, the following forms are allowed under this
exception.</p>
<p>Short conditional statements may be written on one
line if this enhances readability. You may use this only
when the line is brief and the statement does not use the
<code>else</code> clause.</p>
<pre>if (x == kFoo) return new Foo(); <pre>if (x == kFoo) return new Foo();
if (x == kBar) return new Bar();
if (x == kBar)
return new Bar(arg1, arg2, arg3);
if (x == kQuz) { return new Quz(1, 2, 3); }
</pre> </pre>
<p>This is not allowed when the if statement has an <p>Use this style only when the statement is brief, and consider that
<code>else</code>:</p> conditional statements with complex conditions or controlled statements may be
more readable with curly braces. Some
projects
require curly braces always.</p>
<pre class="badcode">// Not allowed - IF statement on one line when there is an ELSE clause <p>Finally, these are not permitted:</p>
<pre class="badcode">// Bad - IF statement with ELSE is missing braces
if (x) DoThis(); if (x) DoThis();
else DoThat(); else DoThat();
</pre>
<p>In general, curly braces are not required for // Bad - IF statement with ELSE does not have braces everywhere
single-line statements, but they are allowed if you like
them; conditional or loop statements with complex
conditions or statements may be more readable with curly
braces. Some
projects require that an
<code>if</code> must always have an accompanying
brace.</p>
<pre>if (condition)
DoSomething(); // 2 space indent.
if (condition) {
DoSomething(); // 2 space indent.
}
</pre>
<p>However, if one part of an
<code>if</code>-<code>else</code> or an
<code>if</code>-<code>else if</code>-<code>else</code> statement uses curly
braces, the other part(s) must, too:</p>
<pre class="badcode">// Not allowed - curly on IF but not ELSE
if (condition) {
foo;
} else
bar;
// Not allowed - curly on ELSE but not IF
if (condition) if (condition)
foo; foo;
else { else {
bar; bar;
} }
</pre>
<pre>// Curly braces around IF, ELSE IF, and ELSE required because // Bad - IF statement is too long to omit braces
// one of the clauses used braces. if (condition)
if (condition) { // Comment
foo; DoSomething();
} else if (other_condition) {
frob; // Bad - IF statement is too long to omit braces
} else { if (condition1 &amp;&amp;
bar; condition2)
} DoSomething();
</pre> </pre>
<h3 id="Loops_and_Switch_Statements">Loops and Switch Statements</h3> <h3 id="Loops_and_Switch_Statements">Loops and Switch Statements</h3>