BIND 10 master, updated. 55d44fc94c8e0ddae7b9b383e7e29b9514ce23ff [master] removed an unused function. it fixes build failure with clang++.

BIND 10 source code commits bind10-changes at lists.isc.org
Mon Mar 12 23:22:37 UTC 2012


The branch, master has been updated
       via  55d44fc94c8e0ddae7b9b383e7e29b9514ce23ff (commit)
      from  b8d64503f7fcbf832c4ca6bdd0dbd55678baf88c (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 55d44fc94c8e0ddae7b9b383e7e29b9514ce23ff
Author: JINMEI Tatuya <jinmei at isc.org>
Date:   Mon Mar 12 16:22:15 2012 -0700

    [master] removed an unused function. it fixes build failure with clang++.

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

Summary of changes:
 src/lib/dns/tests/labelsequence_unittest.cc |   13 -------------
 1 files changed, 0 insertions(+), 13 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/dns/tests/labelsequence_unittest.cc b/src/lib/dns/tests/labelsequence_unittest.cc
index 2e6ec33..98bb99c 100644
--- a/src/lib/dns/tests/labelsequence_unittest.cc
+++ b/src/lib/dns/tests/labelsequence_unittest.cc
@@ -264,19 +264,6 @@ TEST_F(LabelSequenceTest, isAbsolute) {
     ASSERT_TRUE(ls3.isAbsolute());
 }
 
-// A helper function that constructs the textual representation of a name label
-// character for the given char value in the form of \DDD
-string
-getNumericLabel(char ch) {
-    string result;
-    result.push_back(0x5c);     // push '\'
-    result.push_back(0x30 + ((ch / 100) % 10)); // encode the 1st digit
-    result.push_back(0x30 + ((ch / 10) % 10)); // encode the 2nd digit
-    result.push_back(0x30 + (ch % 10));        // encode the 3rd digit
-
-    return (result);
-}
-
 // The following are test data used in the getHash test below.  Normally
 // we use example/documentation domain names for testing, but in this case
 // we'd specifically like to use more realistic data, and are intentionally



More information about the bind10-changes mailing list