From 5daa36d04dc11d882e2830d0c5ac0dd046bf6092 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Mon, 12 Dec 2011 17:28:13 +0000 Subject: [PATCH] boost/python/slice.hpp: bug fix (track #6256) [SVN r75918] --- include/boost/python/slice.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/python/slice.hpp b/include/boost/python/slice.hpp index 4fc62418..19f316a1 100644 --- a/include/boost/python/slice.hpp +++ b/include/boost/python/slice.hpp @@ -248,7 +248,7 @@ class slice : public detail::slice_base get_indicies( const RandomAccessIterator& begin, const RandomAccessIterator& end) const { - get_indices(begin, end); + return get_indices(begin, end); } public: