2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-31 08:22:18 +00:00

Eliminate return from void function.

[SVN r25742]
This commit is contained in:
Dave Abrahams
2004-10-15 16:53:40 +00:00
parent 92ff4ab76f
commit 655868d803

View File

@@ -47,7 +47,7 @@ object getitem(Target const& target, Key const& key)
template <class Key, class Value>
void setitem(object const& target, Key const& key, Value const& value)
{
return setitem(target, object(key), object(value));
setitem(target, object(key), object(value));
}
template <class Key>