summaryrefslogtreecommitdiff
path: root/src/strings
diff options
context:
space:
mode:
Diffstat (limited to 'src/strings')
-rw-r--r--src/strings/base.hpp2
-rw-r--r--src/strings/pair.hpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/strings/base.hpp b/src/strings/base.hpp
index cd8d46f..c5181da 100644
--- a/src/strings/base.hpp
+++ b/src/strings/base.hpp
@@ -31,6 +31,8 @@
// than would probably be necessary in an ideal language.
namespace strings
{
+ // TODO reimplement some things in terms of Slice and Slice::iterator?
+
// simple pointer-wrapping iterator that can be used to get distinct
// types for different containers.
template<class Tag>
diff --git a/src/strings/pair.hpp b/src/strings/pair.hpp
index a519ddb..a592a91 100644
--- a/src/strings/pair.hpp
+++ b/src/strings/pair.hpp
@@ -28,9 +28,7 @@
namespace strings
{
// TODO instead typedef ranges::Contiguous<const char>
- // or whatever it becomes once it exists.
- // const_array is just a hack, as evidenced by the fact
- // that it's not really const.
+ // or whatever it becomes once it exists (probably grown from Slice).
class XPair
{
const char *_begin;