From 6134b43ba9ffc277a3b0cd8cceb5abe8e5c8bd56 Mon Sep 17 00:00:00 2001 From: ENikS Date: Fri, 19 Sep 2014 18:29:58 -0400 Subject: Fixing condition 'sabotaging' MSVC build --- src/script/script.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/script') 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(b.begin(), b.end()) { } CScript(const_iterator pbegin, const_iterator pend) : std::vector(pbegin, pend) { } -#ifndef _MSC_VER CScript(const unsigned char* pbegin, const unsigned char* pend) : std::vector(pbegin, pend) { } -#endif CScript& operator+=(const CScript& b) { -- cgit v1.2.3