aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/bits/stl_function.h
diff options
context:
space:
mode:
authorBenjamin Kosnik <bkoz@purist.soma.redhat.com>2000-06-27 20:57:11 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2000-06-27 20:57:11 +0000
commit54a3a08788fdef9bc73e9029ff106a79a640b3af (patch)
treecb306ee5a8cb85f104985be3326f616120f65caf /libstdc++-v3/bits/stl_function.h
parentadae082f2a7afabdde0038349f53731537070f8d (diff)
downloadgcc-54a3a08788fdef9bc73e9029ff106a79a640b3af.zip
gcc-54a3a08788fdef9bc73e9029ff106a79a640b3af.tar.gz
gcc-54a3a08788fdef9bc73e9029ff106a79a640b3af.tar.bz2
Update to SGI STL 3.3
2000-06-27 Benjamin Kosnik <bkoz@purist.soma.redhat.com> Update to SGI STL 3.3 * ext/hash_map, ext/hash_set, ext/slist, ext/stl_bvector.h, ext/stl_rope.h, ext/ropeimpl.h: Update. * bits/std_bitset.h, bits/std_map, bits/std_memory.h, bits/stl_algo.h, bits/stl_algobase.h, bits/stl_alloc.h, bits/stl_config.h, bits/stl_construct.h, bits/stl_deque.h, bits/stl_function.h, bits/stl_heap.h, bits/stl_iterator.h, bits/stl_iterator_base.h, bits/stl_list.h, bits/stl_map.h, bits/stl_multimap.h, bits/stl_multiset.h, bits/stl_numeric.h, bits/stl_queue.h, bits/stl_set.h, bits/stl_stack.h, bits/stl_string_fwd.h, bits/stl_threads.h, bits/stl_three.h, bits/stl_uninitialized.h, bits/stl_vectory.h: Update. * src/Makefile.am (headers): Add new files. * src/Makefile.in: Regenerate. * src/stl-inst.cc (std): Add instantiation for __sink_unused_warning. * bits/concept_checks.h: New file. * bits/container_concepts.h: New file. * bits/sequence_concepts.h: New file. From-SVN: r34743
Diffstat (limited to 'libstdc++-v3/bits/stl_function.h')
-rw-r--r--libstdc++-v3/bits/stl_function.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/bits/stl_function.h b/libstdc++-v3/bits/stl_function.h
index e7e5340..fcaafac 100644
--- a/libstdc++-v3/bits/stl_function.h
+++ b/libstdc++-v3/bits/stl_function.h
@@ -411,7 +411,7 @@ struct _Constant_binary_fun {
template <class _Result>
struct constant_void_fun : public _Constant_void_fun<_Result> {
- constant_void_fun(const _Result& __v) : _Constant_void_fun<_Result>(_v) {}
+ constant_void_fun(const _Result& __v) : _Constant_void_fun<_Result>(__v) {}
};