summaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/debug
diff options
context:
space:
mode:
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2004-07-29 10:52:49 +0000
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2004-07-29 10:52:49 +0000
commit14677ba884c68380f53171a5fe622d7a9a2abc51 (patch)
treef3f5d8147e3d3fb82ef927e9ecd2e04b388a8e5d /libstdc++-v3/include/debug
parent72564692e8284252ab204b5a42996866109aa302 (diff)
downloadgcc-14677ba884c68380f53171a5fe622d7a9a2abc51.tar.gz
2004-07-29 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/16813 * include/debug/map.h (insert(_InputIterator, _InputIterator)): Fix typo. * testsuite/23_containers/map/insert/16813.cc: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85295 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/debug')
-rw-r--r--libstdc++-v3/include/debug/map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/debug/map.h b/libstdc++-v3/include/debug/map.h
index 2a6794b31e0..017158479d1 100644
--- a/libstdc++-v3/include/debug/map.h
+++ b/libstdc++-v3/include/debug/map.h
@@ -163,7 +163,7 @@ namespace __gnu_debug_def
void
insert(_InputIterator __first, _InputIterator __last)
{
- __glibcxx_valid_range(__first, __last);
+ __glibcxx_check_valid_range(__first, __last);
_Base::insert(__first, __last);
}