BIND 10 master, updated. 1318187d1f3536922d396937de0cca535eb228bf [master] add std:: for size_t; sunstudio is more strict about this.

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


The branch, master has been updated
       via  1318187d1f3536922d396937de0cca535eb228bf (commit)
      from  df5d7b6c42ea160ddc0ba30af632cc092d3b9f07 (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 1318187d1f3536922d396937de0cca535eb228bf
Author: JINMEI Tatuya <jinmei at isc.org>
Date:   Mon Jul 23 22:31:50 2012 +0000

    [master] add std:: for size_t; sunstudio is more strict about this.
    
    to fix a report from a buildbot.  should be trivial, so committing it directly.

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

Summary of changes:
 src/lib/util/unittests/wiredata.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/util/unittests/wiredata.h b/src/lib/util/unittests/wiredata.h
index 8f1385d..a33a03a 100644
--- a/src/lib/util/unittests/wiredata.h
+++ b/src/lib/util/unittests/wiredata.h
@@ -32,8 +32,8 @@ namespace unittests {
 /// This method checks if the expected and actual data have the same length
 /// and all bytes are the same.  If not, it reports the point of mismatch in
 /// the google test format.
-void matchWireData(const void* expected_data, size_t expected_len,
-                   const void* actual_data, size_t actual_len);
+void matchWireData(const void* expected_data, std::size_t expected_len,
+                   const void* actual_data, std::size_t actual_len);
 }
 }
 }



More information about the bind10-changes mailing list