2000-04-22 04:33:34 +08:00
|
|
|
// Explicit instantiation file.
|
|
|
|
|
2001-03-24 04:02:03 +08:00
|
|
|
// Copyright (C) 1999, 2001 Free Software Foundation, Inc.
|
2000-04-22 04:33:34 +08:00
|
|
|
//
|
|
|
|
// 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 of the GNU General Public License as published by the
|
|
|
|
// Free Software Foundation; either version 2, or (at your option)
|
|
|
|
// any later version.
|
|
|
|
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this library; see the file COPYING. If not, write to the Free
|
|
|
|
// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
|
|
// USA.
|
|
|
|
|
|
|
|
// As a special exception, you may use this file as part of a free software
|
|
|
|
// library without restriction. Specifically, if other files instantiate
|
|
|
|
// templates or use macros or inline functions from this file, or you compile
|
|
|
|
// this file and link it with other files to produce an executable, this
|
|
|
|
// file does not by itself cause the resulting executable to be covered by
|
|
|
|
// the GNU General Public License. This exception does not however
|
|
|
|
// invalidate any other reasons why the executable file might be covered by
|
|
|
|
// the GNU General Public License.
|
|
|
|
|
|
|
|
//
|
|
|
|
// ISO C++ 14882:
|
|
|
|
//
|
|
|
|
|
|
|
|
#include <bits/c++config.h>
|
|
|
|
#include <bits/stl_alloc.h>
|
|
|
|
#include <bits/std_vector.h>
|
2001-03-24 04:02:03 +08:00
|
|
|
#include <bits/std_ostream.h>
|
2000-04-22 04:33:34 +08:00
|
|
|
|
2001-03-05 05:34:02 +08:00
|
|
|
namespace std
|
|
|
|
{
|
2000-04-22 04:33:34 +08:00
|
|
|
|
|
|
|
template class __malloc_alloc_template<0>;
|
|
|
|
|
|
|
|
#ifndef __USE_MALLOC
|
2001-12-04 03:11:01 +08:00
|
|
|
template class __default_alloc_template<true, 0>;
|
2000-04-22 04:33:34 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
template
|
|
|
|
void
|
|
|
|
vector<unsigned int>::
|
|
|
|
_M_insert_aux(vector<unsigned int>::iterator, unsigned int const &);
|
|
|
|
|
2001-09-06 06:38:06 +08:00
|
|
|
} // namespace std
|
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
2000-06-28 04:57:11 +08:00
|
|
|
|