From patchwork Fri Aug 27 11:01:09 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 13543 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 863B4BD87D for ; Fri, 27 Aug 2021 11:01:15 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 11E5B6891F; Fri, 27 Aug 2021 13:01:15 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="fOjnwTMg"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 27F2760256 for ; Fri, 27 Aug 2021 13:01:14 +0200 (CEST) Received: from Monstersaurus.local (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id AC9B25A1; Fri, 27 Aug 2021 13:01:13 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1630062073; bh=fwZwwLYMPc8xRGnxaEL5OGXRxxXLrMLyYTplRTxn1vQ=; h=From:To:Cc:Subject:Date:From; b=fOjnwTMgh+euebp+F5yCPMuSfQGIBANBTkROcI5fBy8UwEh3C0RPPSpqy4Utaw22q xpCPnq25m7M4elZvAW0XvC5J51pEhsDwU/vyo3Iv7mrxaknCyJqLWz63pXFj+Fl8bh 19sj1vzs5KfDELefAY5+6RRFU+eGNFDNUkHQSw9E= From: Kieran Bingham To: libcamera devel Date: Fri, 27 Aug 2021 12:01:09 +0100 Message-Id: <20210827110109.381221-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] clang-format: Remove unsupported option 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" The CaseSensitive option requires clang-format 12 which is not widely available. Remove the option, to fix clang-format uses until a solution which supports clang-format version specific configurations can be merged. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- .clang-format | 1 - 1 file changed, 1 deletion(-) diff --git a/.clang-format b/.clang-format index ff60b928affc..5b8857dae924 100644 --- a/.clang-format +++ b/.clang-format @@ -77,7 +77,6 @@ IncludeCategories: # Qt includes (match before C++ standard library) - Regex: '' Priority: 9 - CaseSensitive: true # Headers in <> with an extension. (+system libraries) - Regex: '<([A-Za-z0-9\-_])+\.h>' Priority: 2