Initialize all members.

This commit is contained in:
Mark de Wever 2012-10-07 09:17:52 +00:00
parent 17e542dac1
commit 72e1e227a7

View File

@ -34,7 +34,11 @@ class modification_queue {
// At the beginning and end of each member function call, there
// are no empty vectors in priorities_.
public:
modification_queue() {}
modification_queue()
: priorities_()
{
}
~modification_queue() {}
bool empty() const { return priorities_.empty(); }