From 6af9c5f18eaf51f2d7e564d23d9b09219af9d700 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 8 Jan 2019 16:27:37 -0800 Subject: [PATCH] [iter] Remove stray semicolons --- src/hb-iter.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/hb-iter.hh b/src/hb-iter.hh index fc0147a..79c8cfa 100644 --- a/src/hb-iter.hh +++ b/src/hb-iter.hh @@ -172,10 +172,10 @@ template struct _hb_is_iterator_of { char operator () (...) { return 0; }; - template int operator () (hb_iter_t *) { return 0; }; - template int operator () (hb_iter_t *) { return 0; }; - template int operator () (hb_iter_t *) { return 0; }; - template int operator () (hb_iter_t *) { return 0; }; + template int operator () (hb_iter_t *) { return 0; } + template int operator () (hb_iter_t *) { return 0; } + template int operator () (hb_iter_t *) { return 0; } + template int operator () (hb_iter_t *) { return 0; } static_assert (sizeof (char) != sizeof (int), ""); }; template -- 2.7.4