aboutsummaryrefslogtreecommitdiff
path: root/src/interface/handler.cpp
diff options
context:
space:
mode:
authorRussell Yanofsky <russ@yanofsky.org>2018-04-07 03:42:02 -0400
committerRussell Yanofsky <russ@yanofsky.org>2018-04-07 03:42:02 -0400
commit17780d6f35a3951f649c3b7766b9283d9c18e39f (patch)
treec858c2d92b028d96118983415f40da5b3a0c48e6 /src/interface/handler.cpp
parent5f0c6a7b0e47e03f848dc992d37fe209dd9c6975 (diff)
downloadbitcoin-17780d6f35a3951f649c3b7766b9283d9c18e39f.tar.xz
scripted-diff: Avoid `interface` keyword to fix windows gitian build
Rename `interface` to `interfaces` Build failure reported by Chun Kuan Lee <ken2812221@gmail.com> https://github.com/bitcoin/bitcoin/pull/10244#issuecomment-379434756 -BEGIN VERIFY SCRIPT- git mv src/interface src/interfaces ren() { git grep -l "$1" | xargs sed -i "s,$1,$2,g"; } ren interface/ interfaces/ ren interface:: interfaces:: ren BITCOIN_INTERFACE_ BITCOIN_INTERFACES_ ren "namespace interface" "namespace interfaces" -END VERIFY SCRIPT-
Diffstat (limited to 'src/interface/handler.cpp')
-rw-r--r--src/interface/handler.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/interface/handler.cpp b/src/interface/handler.cpp
deleted file mode 100644
index 4b27f374f4..0000000000
--- a/src/interface/handler.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright (c) 2018 The Bitcoin Core developers
-// Distributed under the MIT software license, see the accompanying
-// file COPYING or http://www.opensource.org/licenses/mit-license.php.
-
-#include <interface/handler.h>
-
-#include <util.h>
-
-#include <boost/signals2/connection.hpp>
-#include <memory>
-#include <utility>
-
-namespace interface {
-namespace {
-
-class HandlerImpl : public Handler
-{
-public:
- HandlerImpl(boost::signals2::connection connection) : m_connection(std::move(connection)) {}
-
- void disconnect() override { m_connection.disconnect(); }
-
- boost::signals2::scoped_connection m_connection;
-};
-
-} // namespace
-
-std::unique_ptr<Handler> MakeHandler(boost::signals2::connection connection)
-{
- return MakeUnique<HandlerImpl>(std::move(connection));
-}
-
-} // namespace interface