Patch Detail
Show a patch.
GET /api/1.1/patches/558/?format=api
{ "id": 558, "url": "https://patchwork.libcamera.org/api/1.1/patches/558/?format=api", "web_url": "https://patchwork.libcamera.org/patch/558/", "project": { "id": 1, "url": "https://patchwork.libcamera.org/api/1.1/projects/1/?format=api", "name": "libcamera", "link_name": "libcamera", "list_id": "libcamera_core", "list_email": "libcamera-devel@lists.libcamera.org", "web_url": "", "scm_url": "", "webscm_url": "" }, "msgid": "<20190212222557.8898-1-laurent.pinchart@ideasonboard.com>", "date": "2019-02-12T22:25:56", "name": "[libcamera-devel,1/2] clang-format: Remove space after template", "commit_ref": "bc4cace5f32dd28304a25cebd062d31961dfbb3e", "pull_url": null, "state": "accepted", "archived": false, "hash": "09ba66e474c918762c587527c8340b90d90b9ada", "submitter": { "id": 2, "url": "https://patchwork.libcamera.org/api/1.1/people/2/?format=api", "name": "Laurent Pinchart", "email": "laurent.pinchart@ideasonboard.com" }, "delegate": null, "mbox": "https://patchwork.libcamera.org/patch/558/mbox/", "series": [ { "id": 176, "url": "https://patchwork.libcamera.org/api/1.1/series/176/?format=api", "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=176", "date": "2019-02-12T22:25:56", "name": "[libcamera-devel,1/2] clang-format: Remove space after template", "version": 1, "mbox": "https://patchwork.libcamera.org/series/176/mbox/" } ], "comments": "https://patchwork.libcamera.org/api/patches/558/comments/", "check": "pending", "checks": "https://patchwork.libcamera.org/api/patches/558/checks/", "tags": {}, "headers": { "Return-Path": "<laurent.pinchart@ideasonboard.com>", "Received": [ "from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 4ECED60B21\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue, 12 Feb 2019 23:26:04 +0100 (CET)", "from pendragon.bb.dnainternet.fi\n\t(dfj612yhrgyx302h3jwwy-3.rev.dnainternet.fi\n\t[IPv6:2001:14ba:21f5:5b00:ce28:277f:58d7:3ca4])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id B767C85\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue, 12 Feb 2019 23:26:03 +0100 (CET)" ], "DKIM-Signature": "v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1550010363;\n\tbh=ybpSOthaBg6pLOBb8wJL+JwoI1OjE0RlLYBI0puFPGE=;\n\th=From:To:Subject:Date:From;\n\tb=kUamhwRhIUNBkmKTH42OU39raTudQSuDgJmlbbu9JFpC0ZT7TGl+l23BHsWpct3Z1\n\t6X3PA+OVIUYrIZYx0qs3qR03GYK4t31fM26ihCG9j5mCMRnubrAio+O0J3EtaMoH9Q\n\toywKvo6ABN8Jg3yPOURHC3vg1y8qBJCFEMPicZ8I=", "From": "Laurent Pinchart <laurent.pinchart@ideasonboard.com>", "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", "Content-Transfer-Encoding": "8bit", "Subject": "[libcamera-devel] [PATCH 1/2] clang-format: Remove space after\n\ttemplate", "X-BeenThere": "libcamera-devel@lists.libcamera.org", "X-Mailman-Version": "2.1.23", "Precedence": "list", "List-Id": "<libcamera-devel.lists.libcamera.org>", "List-Unsubscribe": "<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>", "List-Archive": "<https://lists.libcamera.org/pipermail/libcamera-devel/>", "List-Post": "<mailto:libcamera-devel@lists.libcamera.org>", "List-Help": "<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>", "List-Subscribe": "<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>", "X-List-Received-Date": "Tue, 12 Feb 2019 22:26:04 -0000" }, "content": "Our coding style doesn't require a space after the template keyword.\nAdjust .clang-format accordingly.\n\nSigned-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>\n---\n .clang-format | 2 +-\n 1 file changed, 1 insertion(+), 1 deletion(-)", "diff": "diff --git a/.clang-format b/.clang-format\nindex bed81c58afb5..7c5f7b00b3ee 100644\n--- a/.clang-format\n+++ b/.clang-format\n@@ -100,7 +100,7 @@ ReflowComments: false\n SortIncludes: false\n #SortUsingDeclarations: false # Unknown to clang-format-4.0\n SpaceAfterCStyleCast: false\n-SpaceAfterTemplateKeyword: true\n+SpaceAfterTemplateKeyword: false\n SpaceBeforeAssignmentOperators: true\n #SpaceBeforeCtorInitializerColon: true # Unknown to clang-format-5.0\n #SpaceBeforeInheritanceColon: true # Unknown to clang-format-5.0\n", "prefixes": [ "libcamera-devel", "1/2" ] }