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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user