Skip to content

Commit 49f4724

Browse files
author
Daniel Kroening
committed
use highlight
1 parent a24fce0 commit 49f4724

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

doc/html-manual/cprover-source.shtml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ Creates an <i>exprt</i> object with a given label and no type.
399399
</p>
400400

401401
<pre><code class="c++">exprt(const irep_idt &amp;id, const typet &amp;type);
402-
</pre>
402+
</code></pre>
403403

404404
<p class="justified">
405405
Creates an <i>exprt</i> object with a given label and type.
@@ -409,7 +409,7 @@ Creates an <i>exprt</i> object with a given label and type.
409409

410410
<pre><code class="c++">const typet &amp;type() const;
411411
typet &amp;type();
412-
</pre>
412+
</code></pre>
413413

414414
<p class="justified">
415415
Return a reference to the 'type' node
@@ -481,9 +481,9 @@ original expression with the following simplifications possibly applied:
481481
</p>
482482

483483
<ul>
484-
<li>\neg \neg f = f$</li>
485-
<li>\neg <i>true</i> = <i>false</i></li>
486-
<li>\neg <i>false</i> = <i>true</i></li>
484+
<li>&not; &not; f = f</li>
485+
<li>&not; <i>true</i> = <i>false</i></li>
486+
<li>&not; <i>false</i> = <i>true</i></li>
487487
</ul>
488488

489489
<pre>
@@ -546,10 +546,10 @@ value "false". The second function returns true for any boolean constant
546546
that is not of value "false".
547547
</p>
548548

549-
<pre>
549+
<pre><code class="c++">
550550
bool is_zero() const;
551551
bool is_one() const;
552-
</pre>
552+
</code></pre>
553553

554554
<p class="justified">
555555
The first function returns true if the expression represents a zero numeric

0 commit comments

Comments
 (0)