diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-09-15 00:01:26 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-09-15 00:01:26 -0700 |
commit | a0d3cac4e69101669681a4d8af6dc3e8bd2c9a6a (patch) | |
tree | a6059cadcc1cfea9d4b97a6867d472a3c6297389 /html/030---operands.cc.html | |
parent | 34fda13bfd12204f1fc0145005d9df08f31a1b73 (diff) | |
download | mu-a0d3cac4e69101669681a4d8af6dc3e8bd2c9a6a.tar.gz |
5659
Diffstat (limited to 'html/030---operands.cc.html')
-rw-r--r-- | html/030---operands.cc.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/html/030---operands.cc.html b/html/030---operands.cc.html index 46498b39..780746f3 100644 --- a/html/030---operands.cc.html +++ b/html/030---operands.cc.html @@ -355,7 +355,7 @@ if ('onhashchange' in window) { <span id="L295" class="LineNr">295 </span>string <a href='030---operands.cc.html#L295'>hex_byte_to_string</a><span class="Delimiter">(</span><span class="Normal">uint8_t</span> val<span class="Delimiter">)</span> <span class="Delimiter">{</span> <span id="L296" class="LineNr">296 </span> ostringstream out<span class="Delimiter">;</span> <span id="L297" class="LineNr">297 </span> <span class="Comment">// uint8_t prints without padding, but int8_t will expand to 32 bits again</span> -<span id="L298" class="LineNr">298 </span> out << <a href='010---vm.cc.html#L397'>HEXBYTE</a> << <a href='010---vm.cc.html#L400'>NUM</a><span class="Delimiter">(</span>val<span class="Delimiter">);</span> +<span id="L298" class="LineNr">298 </span> out << <a href='010---vm.cc.html#L400'>HEXBYTE</a> << <a href='010---vm.cc.html#L403'>NUM</a><span class="Delimiter">(</span>val<span class="Delimiter">);</span> <span id="L299" class="LineNr">299 </span> <span class="Identifier">return</span> out<span class="Delimiter">.</span>str<span class="Delimiter">();</span> <span id="L300" class="LineNr">300 </span><span class="Delimiter">}</span> <span id="L301" class="LineNr">301 </span> |