summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2017-04-04 18:54:33 +0200
committerMurray Cumming <murrayc@murrayc.com>2017-04-04 19:48:57 +0200
commitf4c232fe4bbf28e4ec66b34d0ff8c7a49df2df80 (patch)
tree77dfa8e74a4ac8f1b5c0d49b265302f82a691be5
parent24704f63f2d41db9efb0783d1d4d3cf98c7e504e (diff)
downloadglibmm-f4c232fe4bbf28e4ec66b34d0ff8c7a49df2df80.tar.gz
Revert "ustring: Add cbegin() and cend()."
This reverts commit 1cce397af6d1c9dd588d4a16e2b33933bb30d2ea. We should not add API in a stable release cycle.
-rw-r--r--glib/glibmm/ustring.cc12
-rw-r--r--glib/glibmm/ustring.h10
2 files changed, 0 insertions, 22 deletions
diff --git a/glib/glibmm/ustring.cc b/glib/glibmm/ustring.cc
index eae9802e..15ab0098 100644
--- a/glib/glibmm/ustring.cc
+++ b/glib/glibmm/ustring.cc
@@ -841,18 +841,6 @@ ustring::rend() const
return const_reverse_iterator(const_iterator(string_.begin()));
}
-ustring::const_iterator
-ustring::cbegin() const
-{
- return const_iterator(string_.begin());
-}
-
-ustring::const_iterator
-ustring::cend() const
-{
- return const_iterator(string_.end());
-}
-
/**** Glib::ustring::find() ************************************************/
ustring::size_type
diff --git a/glib/glibmm/ustring.h b/glib/glibmm/ustring.h
index fe45c1ac..8e8a546b 100644
--- a/glib/glibmm/ustring.h
+++ b/glib/glibmm/ustring.h
@@ -469,16 +469,6 @@ public:
const_reverse_iterator rbegin() const;
const_reverse_iterator rend() const;
- /**
- * @newin{2,52}
- */
- const_iterator cbegin() const;
-
- /**
- * @newin{2,52}
- */
- const_iterator cend() const;
-
//! @}
//! @name Find sub-strings.
//! @{