summaryrefslogtreecommitdiff
path: root/src/treebuilder/treebuilder.c
diff options
context:
space:
mode:
authorAndrew Sidwell <andy@entai.co.uk>2008-08-11 03:39:41 +0000
committerAndrew Sidwell <andy@entai.co.uk>2008-08-11 03:39:41 +0000
commitbea1f361c83927831aa19cc136dca478cfb33f64 (patch)
tree528c47ca96108fa0156f716fe012eb0576da6b24 /src/treebuilder/treebuilder.c
parent3bc288d6e5a58f0f874e5170a59e16ffe7242ca5 (diff)
downloadlibhubbub-bea1f361c83927831aa19cc136dca478cfb33f64.tar.gz
libhubbub-bea1f361c83927831aa19cc136dca478cfb33f64.tar.bz2
Remove reminders to support UTF-16, since we don't need to anymore.
svn path=/trunk/hubbub/; revision=5009
Diffstat (limited to 'src/treebuilder/treebuilder.c')
-rw-r--r--src/treebuilder/treebuilder.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/treebuilder/treebuilder.c b/src/treebuilder/treebuilder.c
index 5878bc3..dc60d42 100644
--- a/src/treebuilder/treebuilder.c
+++ b/src/treebuilder/treebuilder.c
@@ -371,8 +371,6 @@ hubbub_error process_characters_expect_whitespace(hubbub_treebuilder *treebuilde
size_t len = token->data.character.len;
size_t c;
- /** \todo UTF-16 */
-
for (c = 0; c < len; c++) {
if (data[c] != 0x09 && data[c] != 0x0A &&
data[c] != 0x0C && data[c] != 0x20)
@@ -962,7 +960,6 @@ element_type element_type_from_name(hubbub_treebuilder *treebuilder,
size_t len = tag_name->len;
- /** \todo UTF-16 support */
/** \todo optimise this */
for (uint32_t i = 0;