From 953b944dd2993059aa60d8e9f317ac8984fbdee6 Mon Sep 17 00:00:00 2001 From: Eyal Rozenberg Date: Sun, 26 Jan 2025 16:33:36 +0200 Subject: [PATCH] Fixed #706, regards #704: `context_t::flags()` is no longer gratuitously marked `virtual` --- src/cuda/api/context.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cuda/api/context.hpp b/src/cuda/api/context.hpp index 8bf91e77..e3028930 100644 --- a/src/cuda/api/context.hpp +++ b/src/cuda/api/context.hpp @@ -549,7 +549,7 @@ class context_t { protected: ///@cond - virtual context::flags_t flags() const + context::flags_t flags() const { return context::detail_::get_flags(handle_); }