<pre> implicitly closes a <p> environment, so we're closing and opening
<p> before and after, respectively.
Pushed.
Gerald
---
htdocs/gcc-16/porting_to.html | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/htdocs/gcc-16/porting_to.html b/htdocs/gcc-16/porting_to.html
index a798bb28..326dd13d 100644
--- a/htdocs/gcc-16/porting_to.html
+++ b/htdocs/gcc-16/porting_to.html
@@ -43,6 +43,8 @@ are also used when these warnings are enabled by
<code>=2</code> ignores pre/post inc/decrements on the variable,
<code>=3</code> also ignores compound assignments if the <em>LHS</em> variable
is not also used on the <em>RHS</em>.
+</p>
+
<pre><code>
void foo (void) {
int a = 1; // -Wunused-variable warning
@@ -68,6 +70,8 @@ void foo (void) {
(void) m;
}
</code></pre>
+
+<p>
In order to avoid the warnings, one can either remove newly diagnosed
variables or parameters which aren't used except in pre/post inc/decrements
or compound assignments, make them used in some way, e.g. just
--
2.52.0