2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-19 16:32:16 +00:00

Ssize t warning - trac #3353 (#21)

Fixes msvc unsafe type conversion warning - trac num: 3353
This commit is contained in:
Tom Kent
2019-03-03 21:02:57 -06:00
committed by Stefan Seefeld
parent 65bfec2d97
commit 4b01139720

View File

@@ -73,7 +73,7 @@ class list : public detail::list_base
}
template <class T>
long count(T const& value) const
ssize_t count(T const& value) const
{
return base::count(object(value));
}