]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2369] Add TODOs to remove saveLine() and compact() later
authorMukund Sivaraman <muks@isc.org>
Tue, 6 Nov 2012 04:30:04 +0000 (10:00 +0530)
committerMukund Sivaraman <muks@isc.org>
Tue, 6 Nov 2012 04:30:04 +0000 (10:00 +0530)
src/lib/dns/master_lexer_inputsource.h

index 5c7d75225fb692d5e3b20cc928a536241ae6d8a3..03ab004338cc6f8f80d7b08782f50fe425011b63 100644 (file)
@@ -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.