global: Rename unsigned char to uint8, DynamicUCharArray to DynamicUInt8Array and DynamicUCharVector to DynamicUInt8Vector.
diff --git a/ndn-cpp/common.cpp b/ndn-cpp/common.cpp
index d1c55f3..70d3a90 100644
--- a/ndn-cpp/common.cpp
+++ b/ndn-cpp/common.cpp
@@ -12,7 +12,7 @@
namespace ndn {
string
-toHex(const vector<unsigned char>& array)
+toHex(const vector<uint8_t>& array)
{
if (!&array)
return "";
@@ -20,7 +20,7 @@
ostringstream result;
result.flags(ios::hex | ios::uppercase);
for (unsigned int i = 0; i < array.size(); ++i) {
- unsigned char x = array[i];
+ uint8_t x = array[i];
if (x < 16)
result << '0';
result << (unsigned int)x;