diff options
| author | Patrick Strateman <[email protected]> | 2016-04-19 13:07:16 -0700 |
|---|---|---|
| committer | Patrick Strateman <[email protected]> | 2016-04-19 13:22:03 -0700 |
| commit | ec9ad5f199e4ec6eb05d8ea47016413413fe17e0 (patch) | |
| tree | b28837b7dec046b82f83cc8da59d5904b770fd06 /src/script | |
| parent | Merge #7787: [Moveonly] Create ui_interface.cpp (diff) | |
| download | discoin-ec9ad5f199e4ec6eb05d8ea47016413413fe17e0.tar.xz discoin-ec9ad5f199e4ec6eb05d8ea47016413413fe17e0.zip | |
Replace memcmp with std::equal in CScript::FindAndDelete
Function is stl; std::equal just makes more sense.
Diffstat (limited to 'src/script')
| -rw-r--r-- | src/script/script.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/script.h b/src/script/script.h index d2a68a07b..ef3af21d6 100644 --- a/src/script/script.h +++ b/src/script/script.h @@ -574,7 +574,7 @@ public: opcodetype opcode; do { - while (end() - pc >= (long)b.size() && memcmp(&pc[0], &b[0], b.size()) == 0) + while (end() - pc >= (long)b.size() && std::equal(b.begin(), b.end(), pc)) { pc = erase(pc, pc + b.size()); ++nFound; |