Skip to content

Commit

Permalink
More llvm experiments
Browse files Browse the repository at this point in the history
  • Loading branch information
pcolby committed Dec 2, 2024
1 parent 4ed9a12 commit 8fc6dfc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/unit/lib/teststatusservice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -607,11 +607,14 @@ void TestStatusService::serviceDiscovered()
service.d_func()->serviceDiscovered(StatusService::ServiceUuids::pokitMeter);

const QBluetoothUuid a = service.d_func()->serviceUuid;
const QBluetoothUuid b = StatusService::ServiceUuids::pokitMeter;
QBluetoothUuid b = StatusService::ServiceUuids::pokitMeter;
const QUuid c = static_cast<QUuid>(a);
const QUuid d = static_cast<QUuid>(b);
qInfo() << a;
qInfo() << b;
qInfo() << StatusService::ServiceUuids::pokitMeter;
b = StatusService::ServiceUuids::pokitMeter;
qInfo() << b;
qInfo() << c;
qInfo() << d;
qInfo() << (a == b);
Expand Down

0 comments on commit 8fc6dfc

Please sign in to comment.