From: CryptoManiac Date: Thu, 14 May 2015 13:48:19 +0000 (+0300) Subject: Merge pull request #223 from svost/c4512 X-Git-Tag: nvc-v0.5.3~8 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=b445491ff18ba1fdfc066b092705223376770ceb;hp=b3c51823f2f4e0047a67f7a571790c5885b9de97 Merge pull request #223 from svost/c4512 Fix MSVC c4512 (assignment operator could not be generated) --- diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 6722162..c09be24 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -615,6 +615,7 @@ public: private: bool fNeedHandshake; bool fUseSSL; + SSLIOStreamDevice& operator=(SSLIOStreamDevice const&); asio::ssl::stream& stream; }; diff --git a/src/script.cpp b/src/script.cpp index 77f9ef4..88587a0 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -1539,6 +1539,7 @@ bool ExtractDestination(const CScript& scriptPubKey, CTxDestination& addressRet) class CAffectedKeysVisitor : public boost::static_visitor { private: const CKeyStore &keystore; + CAffectedKeysVisitor& operator=(CAffectedKeysVisitor const&); std::vector &vKeys; public: