- 526 名前:デフォルトの名無しさん [2008/01/10(木) 03:09:30 ]
- 以下のソースがコンパイル通りません。
色々とそぎ落としてこうなったのですが、どこが間違ってるのでしょうか? 誰か助けて〜 #include <iostream> #include <queue> using namespace std; class event { int priority; public: event() { priority = 0; } bool operator<(const event &a); }; bool event::operator<(const event &a) { return this->priority < a.priority; } int main() { priority_queue<event> q; return 0; }
|

|