File tree Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1
- Checks : ' -*,bugprone-argument-comment,modernize-use-nullptr'
2
- WarningsAsErrors : ' bugprone-argument-comment,modernize-use-nullptr'
1
+ Checks : '
2
+ -*,
3
+ bugprone-argument-comment,
4
+ modernize-use-nullptr,
5
+ readability-redundant-declaration,
6
+ '
7
+ WarningsAsErrors : '
8
+ bugprone-argument-comment,
9
+ modernize-use-nullptr,
10
+ readability-redundant-declaration,
11
+ '
Original file line number Diff line number Diff line change 20
20
#include < iterator>
21
21
#include < tuple>
22
22
23
- constexpr size_t CNetAddr::V1_SERIALIZATION_SIZE;
24
- constexpr size_t CNetAddr::MAX_ADDRV2_SIZE;
25
-
26
23
CNetAddr::BIP155Network CNetAddr::GetBIP155Network () const
27
24
{
28
25
switch (m_net) {
Original file line number Diff line number Diff line change 57
57
#include < sys/auxv.h>
58
58
#endif
59
59
60
- // ! Necessary on some platforms
61
- extern char ** environ;
60
+ extern char ** environ; // NOLINT(readability-redundant-declaration): Necessary on some platforms
62
61
63
62
namespace {
64
63
You can’t perform that action at this time.
0 commit comments