mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-22 22:30:09 +08:00
8f9995782e
2001-03-11 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de> * include/ext/stl_hashtable.h: Change type of __n to size_t * include/backward/bvector.h: Include <ext/stl_bvector.h> From-SVN: r40416
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
/*
|
|
*
|
|
* Copyright (c) 1994
|
|
* Hewlett-Packard Company
|
|
*
|
|
* Permission to use, copy, modify, distribute and sell this software
|
|
* and its documentation for any purpose is hereby granted without fee,
|
|
* provided that the above copyright notice appear in all copies and
|
|
* that both that copyright notice and this permission notice appear
|
|
* in supporting documentation. Hewlett-Packard Company makes no
|
|
* representations about the suitability of this software for any
|
|
* purpose. It is provided "as is" without express or implied warranty.
|
|
*
|
|
*
|
|
* Copyright (c) 1996
|
|
* Silicon Graphics Computer Systems, Inc.
|
|
*
|
|
* Permission to use, copy, modify, distribute and sell this software
|
|
* and its documentation for any purpose is hereby granted without fee,
|
|
* provided that the above copyright notice appear in all copies and
|
|
* that both that copyright notice and this permission notice appear
|
|
* in supporting documentation. Silicon Graphics makes no
|
|
* representations about the suitability of this software for any
|
|
* purpose. It is provided "as is" without express or implied warranty.
|
|
*/
|
|
|
|
#ifndef _CPP_BACKWARD_BVECTOR_H
|
|
#define _CPP_BACKWARD_BVECTOR_H 1
|
|
|
|
#include "vector.h"
|
|
|
|
#include <ext/stl_bvector.h>
|
|
|
|
using std::bit_vector;
|
|
|
|
#endif /* _CPP_BACKWARD_BVECTOR_H */
|
|
|
|
// Local Variables:
|
|
// mode:C++
|
|
// End:
|
|
|
|
|