diff options
| author | ENikS <[email protected]> | 2014-09-19 18:29:58 -0400 |
|---|---|---|
| committer | ENikS <[email protected]> | 2014-09-19 18:29:58 -0400 |
| commit | 6134b43ba9ffc277a3b0cd8cceb5abe8e5c8bd56 (patch) | |
| tree | 8a1a7fb42cdfa42eabec70d435412f2da0fdd039 /src/script/script.h | |
| parent | Merge pull request #4944 (diff) | |
| download | discoin-6134b43ba9ffc277a3b0cd8cceb5abe8e5c8bd56.tar.xz discoin-6134b43ba9ffc277a3b0cd8cceb5abe8e5c8bd56.zip | |
Fixing condition 'sabotaging' MSVC build
Diffstat (limited to 'src/script/script.h')
| -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 07a4229f8..4c9ac74b7 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) { |