[iter] WHitespace
authorBehdad Esfahbod <behdad@behdad.org>
Sun, 30 Dec 2018 23:47:47 +0000 (18:47 -0500)
committerBehdad Esfahbod <behdad@behdad.org>
Mon, 21 Jan 2019 01:12:12 +0000 (20:12 -0500)
src/hb-iter.hh

index 87a86b8..475c317 100644 (file)
@@ -179,14 +179,10 @@ struct hb_is_iterable { enum { value = _hb_is_iterable<T, hb_true_t>::value }; }
  * As such, just check for member is_iter being there. */
 template<typename Iter = void, typename Item = void> char
 _hb_is_iterator (...) {};
-template<typename Iter, typename Item> int
-_hb_is_iterator (hb_iter_t<Iter, Item> *) {};
-template<typename Iter, typename Item> int
-_hb_is_iterator (hb_iter_t<Iter, const Item> *) {};
-template<typename Iter, typename Item> int
-_hb_is_iterator (hb_iter_t<Iter, Item&> *) {};
-template<typename Iter, typename Item> int
-_hb_is_iterator (hb_iter_t<Iter, const Item&> *) {};
+template<typename Iter, typename Item> int _hb_is_iterator (hb_iter_t<Iter, Item> *) {};
+template<typename Iter, typename Item> int _hb_is_iterator (hb_iter_t<Iter, const Item> *) {};
+template<typename Iter, typename Item> int _hb_is_iterator (hb_iter_t<Iter, Item&> *) {};
+template<typename Iter, typename Item> int _hb_is_iterator (hb_iter_t<Iter, const Item&> *) {};
 static_assert (sizeof (char) != sizeof (int), "");
 
 template<typename Iter, typename Item>