Commit 3215d750 authored by Stefan Behnel's avatar Stefan Behnel

fix C compiler warning about unused utility function

parent 3e01699c
...@@ -571,6 +571,7 @@ class FusedCFuncDefNode(StatListNode): ...@@ -571,6 +571,7 @@ class FusedCFuncDefNode(StatListNode):
if all_buffer_types: if all_buffer_types:
self._buffer_declarations(pyx_code, decl_code, all_buffer_types) self._buffer_declarations(pyx_code, decl_code, all_buffer_types)
env.use_utility_code(ExprNodes.import_utility_code)
pyx_code.put_chunk( pyx_code.put_chunk(
u""" u"""
...@@ -650,8 +651,6 @@ class FusedCFuncDefNode(StatListNode): ...@@ -650,8 +651,6 @@ class FusedCFuncDefNode(StatListNode):
self.synthesize_defnodes() self.synthesize_defnodes()
self.stats.append(self.__signatures__) self.stats.append(self.__signatures__)
env.use_utility_code(ExprNodes.import_utility_code)
def analyse_expressions(self, env): def analyse_expressions(self, env):
""" """
Analyse the expressions. Take care to only evaluate default arguments Analyse the expressions. Take care to only evaluate default arguments
......
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