aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorENikS <evgeni@eniks.com>2014-09-19 18:29:58 -0400
committerENikS <evgeni@eniks.com>2014-09-19 18:29:58 -0400
commit6134b43ba9ffc277a3b0cd8cceb5abe8e5c8bd56 (patch)
tree8a1a7fb42cdfa42eabec70d435412f2da0fdd039 /src
parent2fc6c67400e91846ca1c1c57011e57491013f9bd (diff)
downloadbitcoin-6134b43ba9ffc277a3b0cd8cceb5abe8e5c8bd56.tar.xz
Fixing condition 'sabotaging' MSVC build
Diffstat (limited to 'src')
-rw-r--r--src/script/script.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/script/script.h b/src/script/script.h
index 07a4229f85..4c9ac74b78 100644
--- a/src/script/script.h
+++ b/src/script/script.h
@@ -340,9 +340,7 @@ public:
CScript() { }
CScript(const CScript& b) : std::vector<unsigned char>(b.begin(), b.end()) { }
CScript(const_iterator pbegin, const_iterator pend) : std::vector<unsigned char>(pbegin, pend) { }
-#ifndef _MSC_VER
CScript(const unsigned char* pbegin, const unsigned char* pend) : std::vector<unsigned char>(pbegin, pend) { }
-#endif
CScript& operator+=(const CScript& b)
{