diff options
Diffstat (limited to 'libstdc++-v3/include/parallel/losertree.h')
-rw-r--r-- | libstdc++-v3/include/parallel/losertree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/include/parallel/losertree.h b/libstdc++-v3/include/parallel/losertree.h index 2f2fae711da..786b8fb12fb 100644 --- a/libstdc++-v3/include/parallel/losertree.h +++ b/libstdc++-v3/include/parallel/losertree.h @@ -1,6 +1,6 @@ // -*- C++ -*- -// Copyright (C) 2007 Free Software Foundation, Inc. +// Copyright (C) 2007, 2008 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the terms @@ -250,7 +250,7 @@ template<typename T, typename Comparator = std::less<T> > } inline ~LoserTree() - { delete[] losers; } + { ::operator delete(losers); } inline int get_min_source() |