projects
/
platform
/
upstream
/
libHarfBuzzSharp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c24ea3
)
[iter] Fix
author
Behdad Esfahbod
<behdad@behdad.org>
Thu, 9 May 2019 18:08:25 +0000
(11:08 -0700)
committer
Behdad Esfahbod
<behdad@behdad.org>
Thu, 9 May 2019 18:31:13 +0000
(11:31 -0700)
src/hb-iter.hh
patch
|
blob
|
history
diff --git
a/src/hb-iter.hh
b/src/hb-iter.hh
index
885c122
..
b74a395
100644
(file)
--- a/
src/hb-iter.hh
+++ b/
src/hb-iter.hh
@@
-544,7
+544,7
@@
struct hb_counter_iter_t :
void __forward__ (unsigned n) { v += n * step; }
void __prev__ () { v -= step; }
void __rewind__ (unsigned n) { v -= n * step; }
- hb_counter_iter_t __end__
_
() const { hb_counter_iter_t (end_, end_, step); }
+ hb_counter_iter_t __end__ () const { hb_counter_iter_t (end_, end_, step); }
bool operator != (const hb_counter_iter_t& o) const
{ return v != o.v || end_ != o.end_ || step != o.step; }