From 21fb6d074180b698f23399cd6f0b7d5f8a03db4f Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Mon, 17 Apr 2017 13:59:58 -0700 Subject: Add SortedVector.cbegin() and .cend() --- toolsrc/include/SortedVector.h | 10 ++++++++++ 1 file changed, 10 insertions(+) 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(); -- cgit v1.2.3