aboutsummaryrefslogtreecommitdiff
path: root/src/device_context.cc
diff options
context:
space:
mode:
authorNicolas James <nj3ahxac@gmail.com>2026-03-12 23:37:18 +1100
committerNicolas James <nj3ahxac@gmail.com>2026-03-12 23:37:18 +1100
commit0d8a1a411ad53f36157354d3a9001f3994876bc0 (patch)
tree27054ee9d95cb0d971f9f159bc538b44cd32da90 /src/device_context.cc
parent8ea01a571be073be00f8a77150f3d62ef5600b52 (diff)
Fix leaks via owner class wrappers on some vulkan objects
Diffstat (limited to 'src/device_context.cc')
-rw-r--r--src/device_context.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/device_context.cc b/src/device_context.cc
index 99a4979..cea0540 100644
--- a/src/device_context.cc
+++ b/src/device_context.cc
@@ -38,7 +38,6 @@ DeviceContext::Clock::Clock(const DeviceContext& context) : device(context) {
DeviceContext::Clock::~Clock() {}
DeviceContext::Clock::time_point_t DeviceContext::Clock::now() {
-
auto ts = timespec{};
if (clock_gettime(CLOCK_MONOTONIC, &ts)) {
throw errno;