diff --git a/include/boost/python/suite/indexing/algorithms.hpp b/include/boost/python/suite/indexing/algorithms.hpp index 078a4fbc..d5ee885d 100755 --- a/include/boost/python/suite/indexing/algorithms.hpp +++ b/include/boost/python/suite/indexing/algorithms.hpp @@ -191,7 +191,6 @@ namespace boost { namespace python { namespace indexing { typedef typename Parent::value_param value_param; typedef typename Parent::index_param index_param; - static void assign (container &, index_param, value_param); static void insert (container &, index_param); }; @@ -548,19 +547,6 @@ namespace boost { namespace python { namespace indexing { } } - ///////////////////////////////////////////////////////////////////////// - // Assign a value at a particular index (set version with dummy param) - ///////////////////////////////////////////////////////////////////////// - - template - void - set_algorithms::assign (container &c - , index_param ix - , value_param dummy) - { - most_derived::insert (c, ix); // Ignore dummy value parameter - } - ///////////////////////////////////////////////////////////////////////// // Insert an element into a set /////////////////////////////////////////////////////////////////////////