diff options
author | ENikS <evgeni@eniks.com> | 2014-09-19 18:29:58 -0400 |
---|---|---|
committer | ENikS <evgeni@eniks.com> | 2014-09-19 18:29:58 -0400 |
commit | 6134b43ba9ffc277a3b0cd8cceb5abe8e5c8bd56 (patch) | |
tree | 8a1a7fb42cdfa42eabec70d435412f2da0fdd039 | |
parent | 2fc6c67400e91846ca1c1c57011e57491013f9bd (diff) |
Fixing condition 'sabotaging' MSVC build
-rw-r--r-- | src/script/script.h | 2 |
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) { |