Commit 0efb1066 authored by Stefan Behnel's avatar Stefan Behnel

Remove undefined branch hint macro usage from generated api header file.

parent 7ba6c7b8
......@@ -3036,7 +3036,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
else:
code.put('sizeof(%s), ' % objstruct)
code.putln('%i); if (unlikely(!%s)) %s' % (
code.putln('%i); if (!%s) %s' % (
not type.is_external or type.is_subclassed,
type.typeptr_cname,
error_code))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment