summaryrefslogtreecommitdiff
path: root/devel/pypersrc/files/patch-src_cc_pyext__GreedyDict.cc
blob: 4fc1c65daf5fabe620a80fcfe8e70c213c208cf3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- src/cc/pyext_GreedyDict.cc.orig	2018-08-27 20:07:54 UTC
+++ src/cc/pyext_GreedyDict.cc
@@ -57,7 +57,7 @@ GreedyDict_New( PyObject* nil, PyObject* args )
 	{
 		// Create a GreedyDict C++ object and associate with a Python self object.
 		GreedyDict* greedyDict = new GreedyDict( hintKeySize );
-		sGreedyDictMap.insert( make_pair<PyObject*,GreedyDict*>(self,greedyDict) );
+		sGreedyDictMap.insert( make_pair(self,greedyDict) );
 	}
 	PY_RETURN_NONE
 }