summaryrefslogtreecommitdiff
path: root/devel/pypersrc/files/patch-src_cc_pyext__DequeChar.cc
blob: 8879e6ec58ab9849fb95804791d0e3a53cea1105 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- src/cc/pyext_DequeChar.cc.orig	2018-08-27 20:06:18 UTC
+++ src/cc/pyext_DequeChar.cc
@@ -59,7 +59,7 @@ DequeChar_New( PyObject* nil, PyObject* args )
 	{
 		// Create a DequeChar C++ object and associate with a Python self object.
 		DequeChar* dequeChar = new DequeChar();
-		sDequeCharMap.insert( make_pair<PyObject*,DequeChar*>(self,dequeChar) );
+		sDequeCharMap.insert( make_pair(self,dequeChar) );
 	}
 	PY_RETURN_NONE
 }