From patchwork Mon Feb 24 22:04:36 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 22852 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 6BB04BF415 for ; Mon, 24 Feb 2025 22:05:00 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 84B896870E; Mon, 24 Feb 2025 23:04:59 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="i5gmj0PL"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id EC6D061856 for ; Mon, 24 Feb 2025 23:04:57 +0100 (CET) Received: from pendragon.ideasonboard.com (81-175-209-231.bb.dnainternet.fi [81.175.209.231]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 03D1C581; Mon, 24 Feb 2025 23:03:30 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1740434611; bh=I+DIOffisGuaS9yfinCdiWHuNsEWoycl7HsGqGXnXO0=; h=From:To:Cc:Subject:Date:From; b=i5gmj0PLZp4W/qXo39IX8kygXbowTBnK4hwp1pgL3G5lRre7cpgSN8cVGAzkTCbgE SMgcEHbrVZsLZZskCU3WF8/Jihph9Z4X/JPFPUHl4us7R2uvJSMejfn+I5vWuKScw7 cE7LlkZ1aI69/uT0iEnamJXSpEX7KJXMrmsek1lw= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Cc: Stefan Klug , Milan Zamazal Subject: [PATCH 0/2] libcamera: Fix -Wnon-virtual-dtor warning Date: Tue, 25 Feb 2025 00:04:36 +0200 Message-ID: <20250224220438.21512-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.45.3 MIME-Version: 1.0 X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Hello, This small patch series fixes an issue reported by Milan, breaking compilation when -Wnon-virtual-dtor is enabled. Patch 1/2 fixes the problem, and patch 2/2 enables the warning to catch future issues before they get integrated in libcamera. Laurent Pinchart (2): libipa: awb: Fix non-virtual destructor warning in AwbStats meson: Enable the -Wnon-virtual-dtor compiler option meson.build | 4 +++- src/ipa/libipa/awb.h | 3 +++ src/ipa/rkisp1/algorithms/awb.cpp | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) base-commit: d4545edb38e2e58d4231fe83f61d766ca2b730fc --- Regards, Laurent Pinchart