diff options
| author | Robert Bradshaw <robertwb@gmail.com> | 2013-12-26 15:40:58 -0800 |
|---|---|---|
| committer | Robert Bradshaw <robertwb@gmail.com> | 2013-12-26 15:40:58 -0800 |
| commit | 404c8968026a355731192f1b48a6f7f16394a5dd (patch) | |
| tree | cb65d0f8657d4ba1d1c70404879a2c6a68062517 /Cython/Compiler/Pipeline.py | |
| parent | 93e0ec352aefe2e36b586680cfb93c3729707ff7 (diff) | |
| download | cython-404c8968026a355731192f1b48a6f7f16394a5dd.tar.gz | |
Add support for external C++ template functions.
The syntax follows that of template classes, namely
cdef T foo[T](T, ...)
Diffstat (limited to 'Cython/Compiler/Pipeline.py')
| -rw-r--r-- | Cython/Compiler/Pipeline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Compiler/Pipeline.py b/Cython/Compiler/Pipeline.py index 48c2cb80e..420307cc5 100644 --- a/Cython/Compiler/Pipeline.py +++ b/Cython/Compiler/Pipeline.py @@ -119,7 +119,7 @@ class UseUtilityCodeDefinitions(CythonTransform): self.process_entry(node.entry) self.process_entry(node.type_entry) return node - + # # Pipeline factories # |
