diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 75cea57a65b..2a4383c260c 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2007-01-15 Paolo Carlini + + * include/std/valarray (valarray<>::cshift): Fix typo. + 2007-01-14 Paolo Carlini * include/bits/stl_algobase.h (fill_n(char*, _Size, diff --git a/libstdc++-v3/include/std/valarray b/libstdc++-v3/include/std/valarray index 6c828b68517..87f30ec4e02 100644 --- a/libstdc++-v3/include/std/valarray +++ b/libstdc++-v3/include/std/valarray @@ -1,6 +1,6 @@ // The template and inlines for the -*- C++ -*- valarray class. -// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006 +// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007 // Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free @@ -847,7 +847,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) else // cshift right { if (size_t(-__n) > _M_size) - __n = -(-__n % _M_size); + __n = -(size_t(-__n) % _M_size); std::__valarray_copy_construct(_M_data + _M_size + __n, _M_data + _M_size, __tmp_M_data);