Skip to content

Commit e011245

Browse files
committed
fix html tidy errors
1 parent ba41515 commit e011245

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

cxx-sensors/src/main/resources/pclint.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22852,7 +22852,7 @@ function performing the call, for example:</p>
2285222852
5 }
2285322853
6 void f(void) {
2285422854
7 int a = 5;
22855-
8 g(&a);
22855+
8 g(&amp;a);
2285622856
9 }
2285722857
</code></pre>
2285822858
<p>will report:</p>
@@ -22861,7 +22861,7 @@ function performing the call, for example:</p>
2286122861
save(x);
2286222862
^</p>
2286322863
<p> 8 supplemental 894: during specific walk g(&(5))
22864-
g(&a);
22864+
g(&amp;a);
2286522865
^
2286622866
</p><h2>References</h2>
2286722867
<p><a href="https://wiki.sei.cmu.edu/confluence/display/c/POS34-C.+Do+not+call+putenv%28%29+with+a+pointer+to+an+automatic+variable+as+the+argument"
@@ -23030,7 +23030,7 @@ target="_blank">SIG35-C. Do not return from a computational exception signal han
2303023030
<key>2765</key>
2303123031
<name>L2765: reference to variable symbol which is neither atomic nor volatile sig_atomic_t within signalhandler-category symbol</name>
2303223032
<description>
23033-
<![CDATA[<p>A signal handler referenced a non-local variable that was not _Atomic, std::atomic<T>, nor volatile
23033+
<![CDATA[<p>A signal handler referenced a non-local variable that was not _Atomic, std::atomic&lt;T&gt;, nor volatile
2303423034
sig_atomic_t. This is likely to cause undefined behavior.</p><h2>References</h2>
2303523035
<p><a href="https://wiki.sei.cmu.edu/confluence/display/c/SIG31-C.+Do+not+access+shared+objects+in+signal+handlers"
2303623036
target="_blank">SIG31-C. Do not access shared objects in signal handlers</a></p>
@@ -23158,9 +23158,9 @@ in C++17 which can result in code that has different meaning depending on the ta
2315823158
compiler. For example:</p>
2315923159
<pre><code>
2316023160
auto j1{1}; // direct list initialization
23161-
// j1 is std::initializer_list<int> in C++11 and int in C++17
23161+
// j1 is std::initializer_list&lt;int&gt; in C++11 and int in C++17
2316223162
auto j2 = {1}; // copy list initialization
23163-
// j2 is always std::initializer_list<int>
23163+
// j2 is always std::initializer_list&lt;int&gt;
2316423164
auto j3 = 1; // copy initialization - NOT list initialization
2316523165
// j3 is always int
2316623166
</code></pre>

0 commit comments

Comments
 (0)