diff --git a/src/backends/contextfree.h b/src/backends/contextfree.h index 3f01d70..b387e55 100644 --- a/src/backends/contextfree.h +++ b/src/backends/contextfree.h @@ -11,7 +11,8 @@ struct HCFStack_ { int count; int cap; HCFChoice *last_completed; // Last completed choice. - HCFChoice *prealloc; // If not NULL, will serve as outermost choice. + // XXX is last_completed still needed? + HCFChoice *prealloc; // If not NULL, will be used for the outermost choice. }; #ifndef UNUSED