diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-09-22 10:33:36 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-09-22 10:34:12 +0200 |
| commit | 321fd7dbee4dc369f26a7a77fbf238aeaf78af94 (patch) | |
| tree | 9c278a0b1eada6f1e7a3911010bdf6ec890610ff /src/script | |
| parent | Merge pull request #4951 (diff) | |
| parent | Fixing condition 'sabotaging' MSVC build (diff) | |
| download | discoin-321fd7dbee4dc369f26a7a77fbf238aeaf78af94.tar.xz discoin-321fd7dbee4dc369f26a7a77fbf238aeaf78af94.zip | |
Merge pull request #4947
6134b43 Fixing condition 'sabotaging' MSVC build (ENikS)
Diffstat (limited to 'src/script')
| -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) { |