Commit 9d573f44 by Wenzel Jakob

stl.h fix for std::map (see PR #43)

parent 1546b857
......@@ -110,7 +110,7 @@ public:
while (PyDict_Next(src, &pos, &key_, &value_)) {
if (!kconv.load(key_, convert) || !vconv.load(value_, convert))
return false;
value[kconv] = vconv;
value[(Key) kconv] = (Value) vconv;
}
return true;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment