From 576d5e242028b492c2a8bbe56edeaa484b8a886a Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 27 Dec 2018 18:39:39 -0500 Subject: [PATCH] Don't use delegating constructors Not all C++11 features are created equal when it comes to support... --- src/hb-dsalgs.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-dsalgs.hh b/src/hb-dsalgs.hh index 32f86bdde..6a94c2284 100644 --- a/src/hb-dsalgs.hh +++ b/src/hb-dsalgs.hh @@ -41,7 +41,7 @@ struct hb_pair_t typedef hb_pair_t pair_t; hb_pair_t (const T1& a, const T2& b) : first (a), second (b) {} - hb_pair_t (const pair_t& o) : hb_pair_t (o.first, o.second) {} + hb_pair_t (const pair_t& o) : first (o.first), second (o.second) {} bool operator == (const pair_t& o) const { return first == o.first && second == o.second; }