From: Mukund Sivaraman Date: Tue, 6 Nov 2012 04:30:04 +0000 (+0530) Subject: [2369] Add TODOs to remove saveLine() and compact() later X-Git-Tag: trac2487_base~18^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=31745f2d5978086e2d0cc40524efc2e5a45b832b;p=thirdparty%2Fkea.git [2369] Add TODOs to remove saveLine() and compact() later --- diff --git a/src/lib/dns/master_lexer_inputsource.h b/src/lib/dns/master_lexer_inputsource.h index 5c7d75225f..03ab004338 100644 --- a/src/lib/dns/master_lexer_inputsource.h +++ b/src/lib/dns/master_lexer_inputsource.h @@ -95,11 +95,19 @@ public: /// \brief Saves the current line being read. Later, when /// \c ungetAll() is called, it skips back to the last-saved line. + /// + /// TODO: Please make this method private if it is unused after the + /// MasterLexer implementation is complete (and only \c mark() is + /// used instead). void saveLine(); /// Removes buffered content before the current location in the /// \c InputSource. It's not possible to \c ungetChar() after this, /// unless we read more data using \c getChar(). + /// + /// TODO: Please make this method private if it is unused after the + /// MasterLexer implementation is complete (and only \c mark() is + /// used instead). void compact(); /// Calls \c saveLine() and \c compact() in sequence.