diff PyTypeConversions.h @ 72:ffaa1fb3d7de vampyhost

inline is not a useful keyword with contemporary compilers
author Chris Cannam
date Mon, 24 Nov 2014 09:50:49 +0000
parents 40a01bb24209
children 76355b91cd92
line wrap: on
line diff
--- a/PyTypeConversions.h	Thu Nov 20 13:02:50 2014 +0000
+++ b/PyTypeConversions.h	Mon Nov 24 09:50:49 2014 +0000
@@ -136,7 +136,7 @@
 	}
 
 	/// this is a special case. numpy.float64 has an array conversions but no array descriptor
-	inline std::vector<float> PyArray0D_Convert(PyArrayInterface *ai) const
+	std::vector<float> PyArray0D_Convert(PyArrayInterface *ai) const
 	{
 		std::vector<float> rValue;
 		if ((ai->typekind) == *"f")