mirror of
https://github.com/postgres/postgres.git
synced 2026-02-27 11:50:33 -05:00
doc: Update note about source code formatting
Update the note about why not to use // comments, even though it's now technically supported. The note about variable declarations was dropped here because it's addressed more properly later in the chapter. Discussion: https://www.postgresql.org/message-id/flat/156924954640.1117.6309209869705522549%40wrigleys.postgresql.org
This commit is contained in:
parent
66e0ea75bb
commit
b4d615aaa1
1 changed files with 3 additions and 3 deletions
|
|
@ -26,9 +26,9 @@
|
|||
</para>
|
||||
|
||||
<para>
|
||||
Do not use C++ style comments (<literal>//</literal> comments). Strict ANSI C
|
||||
compilers do not accept them. For the same reason, do not use C++
|
||||
extensions such as declaring new variables mid-block.
|
||||
To maintain a consistent coding style, do not use C++ style comments
|
||||
(<literal>//</literal> comments). <application>pgindent</application>
|
||||
will replace them with <literal>/* ... */</literal>.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
|
|
|
|||
Loading…
Reference in a new issue