Mark variable unused
Hopefully fixes build with newer ragel. https://github.com/adrian-thurston/ragel/issues/56 Fixes https://github.com/harfbuzz/harfbuzz/issues/2752
This commit is contained in:
parent
f83496a910
commit
f579c66108
|
@ -348,7 +348,7 @@ find_syllables_use (hb_buffer_t *buffer)
|
||||||
auto eof = +pe;
|
auto eof = +pe;
|
||||||
auto ts = +p;
|
auto ts = +p;
|
||||||
auto te = +p;
|
auto te = +p;
|
||||||
unsigned int act;
|
unsigned int act HB_UNUSED;
|
||||||
int cs;
|
int cs;
|
||||||
|
|
||||||
#line 355 "hb-ot-shape-complex-use-machine.hh"
|
#line 355 "hb-ot-shape-complex-use-machine.hh"
|
||||||
|
|
|
@ -190,7 +190,7 @@ find_syllables_use (hb_buffer_t *buffer)
|
||||||
auto eof = +pe;
|
auto eof = +pe;
|
||||||
auto ts = +p;
|
auto ts = +p;
|
||||||
auto te = +p;
|
auto te = +p;
|
||||||
unsigned int act;
|
unsigned int act HB_UNUSED;
|
||||||
int cs;
|
int cs;
|
||||||
%%{
|
%%{
|
||||||
write init;
|
write init;
|
||||||
|
|
Loading…
Reference in New Issue