1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-05 07:24:44 -04:00

Comment out harmless Compiler warning.

This commit is contained in:
John Greb
2014-10-23 22:19:54 +01:00
parent 34d2f8e504
commit ec14645130
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -588,13 +588,13 @@ void SimpleDeserializer::dump() const
case TSigned64: {
qint64 tmp;
readS64(it.key(), &tmp);
qDebug("id %d, S64, len %d: " PRINTF_FORMAT_S64, it.key(), it->length, (int)tmp);
// qDebug("id %d, S64, len %d: " PRINTF_FORMAT_S64, it.key(), it->length, (int)tmp);
break;
}
case TUnsigned64: {
quint64 tmp;
readU64(it.key(), &tmp);
qDebug("id %d, U64, len %d: " PRINTF_FORMAT_U64, it.key(), it->length, (uint)tmp);
// qDebug("id %d, U64, len %d: " PRINTF_FORMAT_U64, it.key(), it->length, (uint)tmp);
break;
}
case TFloat: {