Add a virtual destructor to rust_thread in sync.h, to quiet the compiler

This commit is contained in:
Patrick Walton 2010-10-20 10:32:36 -07:00
parent 368943998d
commit 28d43678b6

View File

@ -35,6 +35,8 @@ public:
void join();
bool is_running();
virtual ~rust_thread() {} // quiet the compiler
};
#endif /* SYNC_H */