You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not totally sure what's going on here, but this is diagnostic output from GCC 9:
^[[01m^[[K/path/to/my/file.cpp:127:30:^[[m^[[K ^[[01;35m^[[Kwarning: ^[[m^[[Kcomparison of integer expressions of different signedness: ~@~X^[[01m^[[Kunsgned int^[[m^[[K~@~Y and ~@~X^[[01m^[[Kint^[[m^[[K~@~Y [^[[01;35m^[[K-Wsign-compare^[[m^[[K]
127 | for (unsigned int y = 0; ^[[01;35m^[[Ky < height^[[m^[[K; y++)
| ^[[01;35m^[[K~~^~~~~~~~^[[m^[[K
Which is rendered by ansi2html into:
<span class="ansi1">/path/to/my/file.cpp:127:30:</span> <span class="ansi1 ansi35">warning: </span>comparison of integer expressions of different signedness: �<span class="ansi1">unsigned int</span>� and �<span class="ansi1">int</span>� [<span class="ansi1 ansi35">-Wsign-compare</span>]
127 | for (unsigned int y = 0; <span class="ansi1 ansi35">y < height</span>; y++)
| <span class="ansi1 ansi35">~~^~~~~~~~</span>
Anyone know what those extra � sequences are, and if they can be filtered out somehow?
The text was updated successfully, but these errors were encountered:
Not totally sure what's going on here, but this is diagnostic output from GCC 9:
Which is rendered by ansi2html into:
Anyone know what those extra
�
sequences are, and if they can be filtered out somehow?The text was updated successfully, but these errors were encountered: