src/hb-private.hh |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit fb07d1a3ce896f8ebf8b5d5fef51dee91b6ead11
Author: Behdad Esfahbod <beh...@behdad.org>
Date:   Fri Jun 1 17:32:07 2018 -0700

    Another attempt at making every compiler happy...
    
    Sigh.

diff --git a/src/hb-private.hh b/src/hb-private.hh
index e96af550..b4633213 100644
--- a/src/hb-private.hh
+++ b/src/hb-private.hh
@@ -537,11 +537,11 @@ _hb_ceil_to_4 (unsigned int v)
  */
 
 #define HB_DISALLOW_ASSIGN(TypeName) \
-  void operator=(const TypeName&) = delete
+  void operator=(const TypeName&)
 
 #define HB_DISALLOW_COPY_AND_ASSIGN(TypeName) \
-  TypeName(const TypeName&) = delete; \
-  void operator=(const TypeName&) = delete
+  TypeName(const TypeName&); \
+  void operator=(const TypeName&)
 
 /*
  * Static pools
_______________________________________________
HarfBuzz mailing list
HarfBuzz@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/harfbuzz

Reply via email to