aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--toolsrc/include/SortedVector.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/toolsrc/include/SortedVector.h b/toolsrc/include/SortedVector.h
index 67e307409..2dce8eb3b 100644
--- a/toolsrc/include/SortedVector.h
+++ b/toolsrc/include/SortedVector.h
@@ -42,6 +42,16 @@ namespace vcpkg
return this->m_data.cend();
}
+ iterator cbegin() const
+ {
+ return this->m_data.cbegin();
+ }
+
+ iterator cend() const
+ {
+ return this->m_data.cend();
+ }
+
bool empty() const
{
return this->m_data.empty();