From patchwork Mon Sep 16 20:14:35 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 1976 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 9A13F60BE6 for ; Mon, 16 Sep 2019 22:14:48 +0200 (CEST) Received: from pendragon.lan (bl10-204-24.dsl.telepac.pt [85.243.204.24]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id ED67C528 for ; Mon, 16 Sep 2019 22:14:47 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1568664888; bh=UDmBAfDNVZQtkLriCmZOJNCiAvl0rxb10mVSUG6jckY=; h=From:To:Subject:Date:From; b=Hbd0H9cKrlFAMExp8TEQyaePSuP3b99JE5rNz+22HMlayzpEw6iW8aRXslaq+WG0y zZETc0wGM3M6cIg9eC0F+BZE5msozSEuxjGQRsgaprgq8q0tH9kyFzvB3JA5hxKWjr IF136caopTQjtkQ1nmyZcpC979DPr54alp+mCB0Y= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Mon, 16 Sep 2019 23:14:35 +0300 Message-Id: <20190916201435.29329-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] clang-format: Don't indent namespaces 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: Mon, 16 Sep 2019 20:14:48 -0000 Our coding style don't indent namespace contents. Update .clang-format accordingly. Signed-off-by: Laurent Pinchart Reviewed-by: Jacopo Mondi Reviewed-by: Niklas Söderlund --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 7c5f7b00b3ee..0f4d2b52e848 100644 --- a/.clang-format +++ b/.clang-format @@ -80,7 +80,7 @@ KeepEmptyLinesAtTheStartOfBlocks: false MacroBlockBegin: '' MacroBlockEnd: '' MaxEmptyLinesToKeep: 1 -NamespaceIndentation: Inner +NamespaceIndentation: None #ObjCBinPackProtocolList: Auto # Unknown to clang-format-5.0 ObjCBlockIndentWidth: 8 ObjCSpaceAfterProperty: true