BIND 10 trac2370, updated. 1c12d2036d9e92d0475f421406bdca6839b04326 [2370] added some comments about numeber types

BIND 10 source code commits bind10-changes at lists.isc.org
Mon Oct 29 21:26:46 UTC 2012


The branch, trac2370 has been updated
       via  1c12d2036d9e92d0475f421406bdca6839b04326 (commit)
      from  e62b6417336ebdaeda560e47b177e617ee4551e5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 1c12d2036d9e92d0475f421406bdca6839b04326
Author: JINMEI Tatuya <jinmei at isc.org>
Date:   Mon Oct 29 14:26:28 2012 -0700

    [2370] added some comments about numeber types

-----------------------------------------------------------------------

Summary of changes:
 src/lib/dns/master_lexer.h |    5 +++++
 1 file changed, 5 insertions(+)

-----------------------------------------------------------------------
diff --git a/src/lib/dns/master_lexer.h b/src/lib/dns/master_lexer.h
index 50dc34c..bd86a04 100644
--- a/src/lib/dns/master_lexer.h
+++ b/src/lib/dns/master_lexer.h
@@ -46,6 +46,11 @@ public:
 class MasterLexer::Token {
 public:
     /// \brief Enumeration for token types
+    ///
+    /// \note At the time of initial implementation, all numeric tokens
+    /// that would be extracted from \c MasterLexer should be represented
+    /// as an unsigned 32-bit integer.  If we see the need for larger integers
+    /// or negative numbers, we can then extend the token types.
     enum Type {
         END_OF_LINE, ///< End of line detected (if asked for detecting it)
         END_OF_FILE, ///< End of file detected (if asked for detecting it)



More information about the bind10-changes mailing list