commit | 0050abe882cbf906323fc8ed12b66cbed049adf7 | [log] [tgz] |
---|---|---|
author | Jeff Thompson <jefft0@gmail.com> | Tue Sep 17 12:50:25 2013 -0700 |
committer | Jeff Thompson <jefft0@gmail.com> | Tue Sep 17 12:50:25 2013 -0700 |
tree | 9efd5ee8ca01f7838bcc96ae3ed741f31147df37 | |
parent | 3352fc2aa01b7864b5b253bc99051f511d72ba62 [diff] [blame] |
Code style: Put function return type on a line by itself.
diff --git a/ndn-cpp/common.hpp b/ndn-cpp/common.hpp index ebf6992..4e451a9 100644 --- a/ndn-cpp/common.hpp +++ b/ndn-cpp/common.hpp
@@ -56,7 +56,8 @@ * @param array The array of bytes. * @return Hex string. */ -std::string toHex(const std::vector<unsigned char>& array); +std::string +toHex(const std::vector<unsigned char>& array); }