about summary refs log tree commit diff stats
path: root/html/054static_dispatch.cc.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-03-02 22:41:18 -0800
committerKartik K. Agaram <vc@akkartik.com>2017-03-02 22:41:18 -0800
commitb5f2a629c2617fc08a3b6d3fcc7d40f3974c8217 (patch)
treee803040bcbd8a08275bebe2d33ce89758ae1c142 /html/054static_dispatch.cc.html
parente520e7989c207da66130b951d6268d11911b4fcc (diff)
downloadmu-b5f2a629c2617fc08a3b6d3fcc7d40f3974c8217.tar.gz
3752 - fix a couple of segfaults
Thanks Ella Couch for running into these.
Diffstat (limited to 'html/054static_dispatch.cc.html')
-rw-r--r--html/054static_dispatch.cc.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/html/054static_dispatch.cc.html b/html/054static_dispatch.cc.html
index 8803f098..6b607ad0 100644
--- a/html/054static_dispatch.cc.html
+++ b/html/054static_dispatch.cc.html
@@ -378,7 +378,7 @@ if ('onhashchange' in window) {
 <span id="L315" class="LineNr">315 </span><span class="Delimiter">}</span>
 <span id="L316" class="LineNr">316 </span>
 <span id="L317" class="LineNr">317 </span><span class="Normal">bool</span> <a href='054static_dispatch.cc.html#L317'>types_strictly_match_except_literal_against_address_or_boolean</a><span class="Delimiter">(</span><span class="Normal">const</span> reagent&amp; to<span class="Delimiter">,</span> <span class="Normal">const</span> reagent&amp; from<span class="Delimiter">)</span> <span class="Delimiter">{</span>
-<span id="L318" class="LineNr">318 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>is_literal<span class="Delimiter">(</span>from<span class="Delimiter">)</span> &amp;&amp; <a href='021check_instruction.cc.html#L199'>is_mu_boolean</a><span class="Delimiter">(</span>to<span class="Delimiter">))</span>
+<span id="L318" class="LineNr">318 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>is_literal<span class="Delimiter">(</span>from<span class="Delimiter">)</span> &amp;&amp; <a href='021check_instruction.cc.html#L200'>is_mu_boolean</a><span class="Delimiter">(</span>to<span class="Delimiter">))</span>
 <span id="L319" class="LineNr">319 </span>    <span class="Identifier">return</span> from<span class="Delimiter">.</span>name == <span class="Constant">&quot;0&quot;</span> || from<span class="Delimiter">.</span>name == <span class="Constant">&quot;1&quot;</span><span class="Delimiter">;</span>
 <span id="L320" class="LineNr">320 </span>  <span class="Identifier">return</span> types_strictly_match_except_literal_zero_against_address<span class="Delimiter">(</span>to<span class="Delimiter">,</span> from<span class="Delimiter">);</span>
 <span id="L321" class="LineNr">321 </span><span class="Delimiter">}</span>