aboutsummaryrefslogtreecommitdiff
path: root/src/script
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2016-12-27 10:50:43 -0800
committerPieter Wuille <[email protected]>2016-12-27 11:04:14 -0800
commit2db4cbcc437f51f5dac82cc4de46f383b92e6f11 (patch)
treeeee83b2daf5af4d4a9478d3b47b1866d140a47c8 /src/script
parentMerge #9243: Clean up mapArgs and mapMultiArgs Usage (diff)
parentMake CScript (and prevector) c++11 movable. (diff)
downloaddiscoin-2db4cbcc437f51f5dac82cc4de46f383b92e6f11.tar.xz
discoin-2db4cbcc437f51f5dac82cc4de46f383b92e6f11.zip
Merge #9349: Make CScript (and prevector) c++11 movable.
2ddfcfd Make CScript (and prevector) c++11 movable. (Pieter Wuille)
Diffstat (limited to 'src/script')
-rw-r--r--src/script/script.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/script/script.h b/src/script/script.h
index 76419c149..a2b9d1b79 100644
--- a/src/script/script.h
+++ b/src/script/script.h
@@ -394,7 +394,6 @@ protected:
}
public:
CScript() { }
- CScript(const CScript& b) : CScriptBase(b.begin(), b.end()) { }
CScript(const_iterator pbegin, const_iterator pend) : CScriptBase(pbegin, pend) { }
CScript(std::vector<unsigned char>::const_iterator pbegin, std::vector<unsigned char>::const_iterator pend) : CScriptBase(pbegin, pend) { }
CScript(const unsigned char* pbegin, const unsigned char* pend) : CScriptBase(pbegin, pend) { }