Commit 8d48367b by Mark Mitchell

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

From-SVN: r37256
parent 4e2c8d44
//Build don't link:
#include <vector.h>
#include <vector>
using namespace std;
enum s { S };
class a
{
......
//Build don't link:
#include <vector.h>
#include <vector>
using namespace std;
enum s { S };
class a
{
......
......@@ -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
{
......
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