diff options
Diffstat (limited to 'contrib/libstdc++/include/std/std_stack.h')
-rw-r--r-- | contrib/libstdc++/include/std/std_stack.h | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/contrib/libstdc++/include/std/std_stack.h b/contrib/libstdc++/include/std/std_stack.h index ddae7e7..70f0456 100644 --- a/contrib/libstdc++/include/std/std_stack.h +++ b/contrib/libstdc++/include/std/std_stack.h @@ -1,6 +1,6 @@ // <stack> -*- 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,20 +58,16 @@ * in your programs, rather than any of the "st[dl]_*.h" implementation files. */ -#ifndef _CPP_STACK -#define _CPP_STACK 1 +#ifndef _GLIBCXX_STACK +#define _GLIBCXX_STACK 1 #pragma GCC system_header #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_deque.h> +#include <deque> #include <bits/stl_stack.h> -#ifdef _GLIBCPP_NO_TEMPLATE_EXPORT -# include <bits/deque.tcc> -#endif - -#endif /* _CPP_STACK */ +#endif /* _GLIBCXX_STACK */ |