summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Horel <guillaume.horel@gmail.com>2017-02-24 14:58:58 -0500
committerGuillaume Horel <guillaume.horel@gmail.com>2017-06-08 16:49:20 -0400
commit23e7a3e30dce6b4c4e176e440b8c9405c58f9b9a (patch)
tree992095496c7b48bb749d1ec95c7d632dfce0009a
parente166075af303a0ddbddcc4dfba1a0f194101e023 (diff)
downloadpyisda-23e7a3e30dce6b4c4e176e440b8c9405c58f9b9a.tar.gz
Use boost
Debian's compiler is so old it doesn't support C++11
-rw-r--r--pyisda/curve.pxd2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyisda/curve.pxd b/pyisda/curve.pxd
index 4b6b362..86fa45a 100644
--- a/pyisda/curve.pxd
+++ b/pyisda/curve.pxd
@@ -182,7 +182,7 @@ cdef enum Basis:
ANNUAL_BASIS = 1
DISCOUNT_FACTOR = -2
-cdef extern from "<memory>" namespace "std" nogil:
+cdef extern from "boost/shared_ptr.hpp" namespace "boost" nogil:
cdef cppclass shared_ptr[T]:
ctypedef void (*D)(T*)
shared_ptr()