From 17780d6f35a3951f649c3b7766b9283d9c18e39f Mon Sep 17 00:00:00 2001 From: Russell Yanofsky Date: Sat, 7 Apr 2018 03:42:02 -0400 Subject: scripted-diff: Avoid `interface` keyword to fix windows gitian build Rename `interface` to `interfaces` Build failure reported by Chun Kuan Lee 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- --- src/interface/handler.cpp | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 src/interface/handler.cpp (limited to 'src/interface/handler.cpp') 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 - -#include - -#include -#include -#include - -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 MakeHandler(boost::signals2::connection connection) -{ - return MakeUnique(std::move(connection)); -} - -} // namespace interface -- cgit v1.2.3