From patchwork Tue Feb 12 22:25:56 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 558 Return-Path: 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 4ECED60B21 for ; Tue, 12 Feb 2019 23:26:04 +0100 (CET) Received: from pendragon.bb.dnainternet.fi (dfj612yhrgyx302h3jwwy-3.rev.dnainternet.fi [IPv6:2001:14ba:21f5:5b00:ce28:277f:58d7:3ca4]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id B767C85 for ; Tue, 12 Feb 2019 23:26:03 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1550010363; bh=ybpSOthaBg6pLOBb8wJL+JwoI1OjE0RlLYBI0puFPGE=; h=From:To:Subject:Date:From; b=kUamhwRhIUNBkmKTH42OU39raTudQSuDgJmlbbu9JFpC0ZT7TGl+l23BHsWpct3Z1 6X3PA+OVIUYrIZYx0qs3qR03GYK4t31fM26ihCG9j5mCMRnubrAio+O0J3EtaMoH9Q oywKvo6ABN8Jg3yPOURHC3vg1y8qBJCFEMPicZ8I= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Wed, 13 Feb 2019 00:25:56 +0200 Message-Id: <20190212222557.8898-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 1/2] clang-format: Remove space after template X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Feb 2019 22:26:04 -0000 Our coding style doesn't require a space after the template keyword. Adjust .clang-format accordingly. Signed-off-by: Laurent Pinchart Reviewed-by: Niklas Söderlund --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index bed81c58afb5..7c5f7b00b3ee 100644 --- a/.clang-format +++ b/.clang-format @@ -100,7 +100,7 @@ ReflowComments: false SortIncludes: false #SortUsingDeclarations: false # Unknown to clang-format-4.0 SpaceAfterCStyleCast: false -SpaceAfterTemplateKeyword: true +SpaceAfterTemplateKeyword: false SpaceBeforeAssignmentOperators: true #SpaceBeforeCtorInitializerColon: true # Unknown to clang-format-5.0 #SpaceBeforeInheritanceColon: true # Unknown to clang-format-5.0