From c7b13b6949f1ead9db6e61fb043eedf41b713736 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 13 Dec 2025 09:01:52 +0100 Subject: fix: `nullable_stream` shall be final. Signed-off-by: Amlal El Mahrouss --- include/ocl/io.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/ocl/io.hpp b/include/ocl/io.hpp index c7599a5..135ddc1 100644 --- a/include/ocl/io.hpp +++ b/include/ocl/io.hpp @@ -23,10 +23,10 @@ namespace ocl::io { - class nullable_stream + class nullable_stream final { nullable_stream() = default; - virtual ~nullable_stream() = default; + ~nullable_stream() = default; nullable_stream& operator<<(...) = delete; nullable_stream& operator>>(...) = delete; -- cgit v1.2.3