Commit 1362dd37 by Robert Lipe

Additional changes from Martin.

From-SVN: r20154
parent 41c3f1e1
//Build don't link:
//Neither stack nor vector provide priority_queue, use <queue> instead
#include <stack>
#include <vector>
int main()
{
priority_queue< int, vector<int>, greater<int> > pq;
priority_queue< int, vector<int>, greater<int> > pq; // ERROR -
return 0;
}
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