Commit 8d48367b by Mark Mitchell

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

From-SVN: r37256
parent 4e2c8d44
//Build don't link: //Build don't link:
#include <vector.h> #include <vector>
using namespace std;
enum s { S }; enum s { S };
class a class a
{ {
......
//Build don't link: //Build don't link:
#include <vector.h> #include <vector>
using namespace std;
enum s { S }; enum s { S };
class a class a
{ {
......
...@@ -3,8 +3,11 @@ ...@@ -3,8 +3,11 @@
// The first one should still fail because it requires an implicit conversion // The first one should still fail because it requires an implicit conversion
// to pointer_to_binary_function, which has an `explicit' constructor. // to pointer_to_binary_function, which has an `explicit' constructor.
#include <vector.h> #include <vector>
#include <algo.h> #include <algorithm>
#include <functional>
using namespace std;
template <class T> class Expr template <class T> class Expr
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment