Browse Source

Fixing condition 'sabotaging' MSVC build

0.10
ENikS 10 years ago
parent
commit
6134b43ba9
  1. 2
      src/script/script.h

2
src/script/script.h

@ -340,9 +340,7 @@ public: @@ -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)
{

Loading…
Cancel
Save