tabbing
[iotcloud.git] / version2 / src / C / Pair.h
index 81d5ebb3e388d117a0fd16e204362ea9df99a064..1e398231df7eb98a50f1862d5601016926245ae4 100644 (file)
@@ -13,11 +13,11 @@ public:
                b(_b) {
        }
 
Pair(Pair<A, B> * p) :
      Pair(Pair<A, B> *p) :
                a(p->a),
-                       b(p->b) {
-               }
-               
+               b(p->b) {
+       }
+
        A getFirst() {
                return a;
        }
@@ -28,7 +28,7 @@ public:
 };
 
 template<typename A, typename B>
-inline unsigned int pairHashFunction(Pair<A, B> * p) {
+inline unsigned int pairHashFunction(Pair<A, B> *p) {
        return (p->getFirst() << 1) ^ p->getSecond();
 }