1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-16 19:31:02 +01:00

Fix warning on GCC 4.6

This commit is contained in:
John Maguire 2011-10-06 14:24:33 +02:00
parent 5e343611bf
commit 265b174dc9

View File

@ -51,6 +51,7 @@ void Closure::Connect(QObject* sender, const char* signal) {
Q_ASSERT(success);
success = connect(sender, SIGNAL(destroyed()), SLOT(Cleanup()));
Q_ASSERT(success);
Q_UNUSED(success);
}
void Closure::Invoked() {