aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-11-27 17:27:45 +0100
committerMattias Andrée <maandree@operamail.com>2014-11-27 17:27:45 +0100
commitef698e0080844eecb5500cb9582ef53209721f5e (patch)
treee353934089bda8c309a81ec009ca9f57d564bf88
parentmds-kbdc: first untested version of macro call alternation elimination (diff)
downloadmds-ef698e0080844eecb5500cb9582ef53209721f5e.tar.gz
mds-ef698e0080844eecb5500cb9582ef53209721f5e.tar.bz2
mds-ef698e0080844eecb5500cb9582ef53209721f5e.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--src/mds-kbdc/simplify-tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mds-kbdc/simplify-tree.c b/src/mds-kbdc/simplify-tree.c
index 855f8f7..44ae51b 100644
--- a/src/mds-kbdc/simplify-tree.c
+++ b/src/mds-kbdc/simplify-tree.c
@@ -248,11 +248,11 @@ static int simplify(mds_kbdc_tree_t* restrict tree)
break;
case MDS_KBDC_TREE_TYPE_ALTERNATION:
- /* TODO find alternation and unordered, find singletons, error if empty */
+ /* TODO find alternation and unordered, find singletons, multiple nothings, error if empty */
break;
case MDS_KBDC_TREE_TYPE_UNORDERED:
- /* TODO find alternation, unordered and nothing, find singletons, error if empty */
+ /* TODO find alternation, unordered and nothing, find singletons, multiple nothings, error if empty */
break;
case MDS_KBDC_TREE_TYPE_MACRO_CALL: