aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/cppbor/cppbor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cppbor/cppbor.h b/include/cppbor/cppbor.h
index e0962db..2362e3c 100644
--- a/include/cppbor/cppbor.h
+++ b/include/cppbor/cppbor.h
@@ -469,7 +469,7 @@ class ViewBstr : public Item {
: mView(begin, std::distance(begin, end)) {}
bool operator==(const ViewBstr& other) const& {
- return std::equal(mView.begin(), mView.end(), other.mView.begin(), other.mView.end());
+ return std::equal(mView.begin(), mView.end(), other.mView.begin(), other.mView.end());
}
MajorType type() const override { return kMajorType; }