fixeria submitted this change.

View Change



1 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.

Approvals: laforge: Looks good to me, approved Jenkins Builder: Verified pespin: Looks good to me, but someone else must approve
.checkpatch.c++.conf: --ignore LEADING_SPACE

checkpatch complains about leading spaces in C++ header files.

For instance, the following code:

```
class Transceiver {
public:
Transceiver(const struct trx_cfg *cfg, ...);
```

fails with:

WARNING:LEADING_SPACE: please, no spaces at the start of a line

Ignore it for C++, like the other rules already excluded there.

Change-Id: I542cd4e393c218979e78f56c7d3f9d2ed6d6f379
---
M .checkpatch.c++.conf
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/.checkpatch.c++.conf b/.checkpatch.c++.conf
index 907c8b3..dbc7bfc 100644
--- a/.checkpatch.c++.conf
+++ b/.checkpatch.c++.conf
@@ -5,3 +5,4 @@
--ignore INDENTED_LABEL
--ignore NEW_TYPEDEFS
--ignore SPACING
+--ignore LEADING_SPACE

To view, visit change 43602. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: merged
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: I542cd4e393c218979e78f56c7d3f9d2ed6d6f379
Gerrit-Change-Number: 43602
Gerrit-PatchSet: 4
Gerrit-Owner: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Reviewer: laforge <laforge@osmocom.org>
Gerrit-Reviewer: pespin <pespin@sysmocom.de>