commit | 1656e6a7e7d671eaab2e04cc4c11ebb6a2aac98c | [log] [tgz] |
---|---|---|
author | Jeff Thompson <jefft0@gmail.com> | Thu Aug 29 18:01:48 2013 -0700 |
committer | Jeff Thompson <jefft0@gmail.com> | Thu Aug 29 18:01:48 2013 -0700 |
tree | c74506f342c3748e5330eff24e8655bfaded8751 | |
parent | d1427fba9a0c93d24573d81519200ac6048117fa [diff] [blame] |
Code style: Declare (Type& value) instead of (Type &value)
diff --git a/ndn-cpp/common.cpp b/ndn-cpp/common.cpp index b4c6e45..b4a1bd8 100644 --- a/ndn-cpp/common.cpp +++ b/ndn-cpp/common.cpp
@@ -10,7 +10,7 @@ namespace ndn { -string toHex(const vector<unsigned char> &array) +string toHex(const vector<unsigned char>& array) { ostringstream result; result.flags(ios::hex | ios::uppercase);