Imported Upstream version 2.6.7
[platform/upstream/harfbuzz.git] / src / hb-pool.hh
index 83875db..dcf0faf 100644 (file)
@@ -41,9 +41,7 @@ struct hb_pool_t
   {
     next = nullptr;
 
-    + hb_iter (chunks)
-    | hb_apply ([] (chunk_t *_) { ::free (_); })
-    ;
+    for (chunk_t *_ : chunks) ::free (_);
 
     chunks.fini ();
   }