diff options
Diffstat (limited to 'contrib/libstdc++/include/std/std_vector.h')
-rw-r--r-- | contrib/libstdc++/include/std/std_vector.h | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/contrib/libstdc++/include/std/std_vector.h b/contrib/libstdc++/include/std/std_vector.h index 5738ef7..16e50a9 100644 --- a/contrib/libstdc++/include/std/std_vector.h +++ b/contrib/libstdc++/include/std/std_vector.h @@ -1,6 +1,6 @@ // <vector> -*- C++ -*- -// Copyright (C) 2001, 2002 Free Software Foundation, Inc. +// Copyright (C) 2001, 2002, 2003 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 @@ -58,22 +58,26 @@ * in your programs, rather than any of the "st[dl]_*.h" implementation files. */ -#ifndef _CPP_VECTOR -#define _CPP_VECTOR 1 +#ifndef _GLIBCXX_VECTOR +#define _GLIBCXX_VECTOR 1 #pragma GCC system_header #include <bits/functexcept.h> #include <bits/stl_algobase.h> -#include <bits/stl_alloc.h> +#include <bits/allocator.h> #include <bits/stl_construct.h> #include <bits/stl_uninitialized.h> #include <bits/stl_vector.h> #include <bits/stl_bvector.h> -#ifdef _GLIBCPP_NO_TEMPLATE_EXPORT -# include <bits/vector.tcc> +#ifndef _GLIBCXX_EXPORT_TEMPLATE +# include <bits/vector.tcc> #endif -#endif /* _CPP_VECTOR */ +#ifdef _GLIBCXX_DEBUG +# include <debug/vector> +#endif + +#endif /* _GLIBCXX_VECTOR */ |