Skip to content

Commit 249c7d5

Browse files
committed
Cast to void *
1 parent 24eee0c commit 249c7d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/smart-pointer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ void RefObjectTracker::reportLiveObjects()
1212
printf("Found %zu live RHI objects!\n", objects.size());
1313
for (auto obj : objects)
1414
{
15-
printf("Live object: %p\n", obj);
15+
printf("Live object: %p\n", static_cast<void *>(obj));
1616
}
1717
}
1818
}

0 commit comments

Comments
 (0)