Browse Source

[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.
JINMEI Tatuya 13 years ago
parent
commit
1318187d1f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/lib/util/unittests/wiredata.h

+ 2 - 2
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);
 }
 }
 }