aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Prichard <rprichard@google.com>2024-02-15 14:48:43 -0800
committerRyan Prichard <rprichard@google.com>2024-02-16 00:50:28 +0000
commitfb298d1f642e8f17a10c684c46aa9a68608221dc (patch)
tree2ac6c8e503d719b7dd21b979e94359e730edc7a8
parentac7516b33e516a3ea41e7dcdde323dc7082c4c95 (diff)
downloadlibcppbor-fb298d1f642e8f17a10c684c46aa9a68608221dc.tar.gz
ViewBstr::operator==: fix indentation
Bug: none Test: treehugger Change-Id: I952fb82cf6c03a58e16cbcd6ca83e7e260704699
-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; }