aboutsummaryrefslogtreecommitdiff
path: root/src/httprpc.cpp
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2016-08-26 18:06:38 +0200
committerPieter Wuille <[email protected]>2016-08-26 18:13:22 +0200
commit9a0ed08b40b15ae2b791aa8549b53e69934b4ea7 (patch)
tree6d7ab9cf89141f8d2706eaad4c57f73f25567902 /src/httprpc.cpp
parentMerge #8602: [trivial][doc] Mention ++i as preferred over i++ in dev notes (diff)
parentDo not shadow member variables (diff)
downloaddiscoin-9a0ed08b40b15ae2b791aa8549b53e69934b4ea7.tar.xz
discoin-9a0ed08b40b15ae2b791aa8549b53e69934b4ea7.zip
Merge #8109: Do not shadow member variables
ff8d279 Do not shadow member variables (Pavel Janík)
Diffstat (limited to 'src/httprpc.cpp')
-rw-r--r--src/httprpc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/httprpc.cpp b/src/httprpc.cpp
index 04d3386e9..6a6c5276c 100644
--- a/src/httprpc.cpp
+++ b/src/httprpc.cpp
@@ -45,7 +45,7 @@ private:
class HTTPRPCTimerInterface : public RPCTimerInterface
{
public:
- HTTPRPCTimerInterface(struct event_base* base) : base(base)
+ HTTPRPCTimerInterface(struct event_base* _base) : base(_base)
{
}
const char* Name()