Use <vector> rather than <vector.h>.

From-SVN: r37256
This commit is contained in:
Mark Mitchell 2000-11-04 19:37:37 +00:00
parent 4e2c8d44e8
commit 8d48367bef
3 changed files with 13 additions and 4 deletions

View File

@ -1,5 +1,8 @@
//Build don't link:
#include <vector.h>
#include <vector>
using namespace std;
enum s { S };
class a
{

View File

@ -1,5 +1,8 @@
//Build don't link:
#include <vector.h>
#include <vector>
using namespace std;
enum s { S };
class a
{

View File

@ -3,8 +3,11 @@
// The first one should still fail because it requires an implicit conversion
// to pointer_to_binary_function, which has an `explicit' constructor.
#include <vector.h>
#include <algo.h>
#include <vector>
#include <algorithm>
#include <functional>
using namespace std;
template <class T> class Expr
{