File indexing completed on 2024-06-16 04:24:44

0001 #include <QTime>
0002 int main()
0003 {
0004     QTime t(15, 30, 10, 123);
0005     Q_UNUSED(t.toString()); // prevent compiler optimizing away the unused object
0006     return 0;
0007 }