Imported Upstream version 2.6.7
[platform/upstream/harfbuzz.git] / src / hb-map.hh
index 8c8db4d..b7bf7fe 100644 (file)
@@ -135,8 +135,8 @@ struct hb_hashmap_t
       for (unsigned int i = 0; i < old_size; i++)
        if (old_items[i].is_real ())
          set_with_hash (old_items[i].key,
-                         old_items[i].hash,
-                         old_items[i].value);
+                        old_items[i].hash,
+                        old_items[i].value);
 
     free (old_items);
 
@@ -211,7 +211,7 @@ struct hb_hashmap_t
   )
 
   /* Sink interface. */
-  hb_hashmap_t<K, V, kINVALID, vINVALID>& operator << (const hb_pair_t<K, V>& v)
+  hb_hashmap_t& operator << (const hb_pair_t<K, V>& v)
   { set (v.first, v.second); return *this; }
 
   protected: