aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/util.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2019-07-08 20:22:55 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2019-07-08 20:29:00 +0200
commit345f42a9e3ae3bd0ccf979422f7f4dca9be1cb57 (patch)
tree49f38101001df067ea4b88a22681e71fa37c2397 /src/rpc/util.h
parent0a6ee9797e65335eeacfc0c2f27de3a998e06c82 (diff)
parentc4606b84329d760d7cee144bebe05807857edaae (diff)
downloadbitcoin-345f42a9e3ae3bd0ccf979422f7f4dca9be1cb57.tar.xz
Merge #14505: test: Add linter to make sure single parameter constructors are marked explicit
c4606b84329d760d7cee144bebe05807857edaae Add Travis check for single parameter constructors not marked "explicit" (practicalswift) Pull request description: Make single parameter constructors `explicit` (C++11). Rationale from the developer notes: > - By default, declare single-argument constructors `explicit`. > - *Rationale*: This is a precaution to avoid unintended conversions that might > arise when single-argument constructors are used as implicit conversion > functions. ACKs for top commit: laanwj: ACK c4606b84329d760d7cee144bebe05807857edaae Tree-SHA512: 3e6fd51935fd93b2604b2188664692973d0897469f814cd745b5147d71b99ea5d73c1081cfde9f6393f51f56969e412fcda35d2d54e938a3235b8d40945f31fd
Diffstat (limited to 'src/rpc/util.h')
-rw-r--r--src/rpc/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/util.h b/src/rpc/util.h
index 8762281d73..ae3c3d63e0 100644
--- a/src/rpc/util.h
+++ b/src/rpc/util.h
@@ -226,7 +226,7 @@ struct RPCResults {
struct RPCExamples {
const std::string m_examples;
- RPCExamples(
+ explicit RPCExamples(
std::string examples)
: m_examples(std::move(examples))
{