data+interest+selectors+meta-info+signature: Implementing EqualityComparable concept

Change-Id: I54f04820861bdc7b4e001949f1ba8d62f9a66786
diff --git a/src/interest.cpp b/src/interest.cpp
index 8734274..314bdca 100644
--- a/src/interest.cpp
+++ b/src/interest.cpp
@@ -26,7 +26,7 @@
 
 
 bool
-Interest::matchesName(const Name &name) const
+Interest::matchesName(const Name& name) const
 {
   if (name.size() < m_name.size())
     return false;
@@ -75,8 +75,8 @@
   return true;
 }
 
-std::ostream &
-operator << (std::ostream &os, const Interest &interest)
+std::ostream&
+operator<<(std::ostream& os, const Interest& interest)
 {
   os << interest.getName();