From 4f7abba608ed44d3495173c7d323e7dd6a4d8aaf Mon Sep 17 00:00:00 2001 From: Raoul Gough Date: Mon, 20 Oct 2003 10:59:37 +0000 Subject: [PATCH] Remove set_algorithms::assign [SVN r20421] --- include/boost/python/suite/indexing/algorithms.hpp | 14 -------------- 1 file changed, 14 deletions(-) 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 /////////////////////////////////////////////////////////////////////////