diff options
author | Kristian Rietveld <kris@lanedo.com> | 2012-08-27 09:40:38 +0200 |
---|---|---|
committer | Kristian Rietveld <kris@lanedo.com> | 2012-08-27 09:40:38 +0200 |
commit | fafd326d3084377bd7436b619dc25e9fdf09fdc0 (patch) | |
tree | 85c894e4f3bf37a133cff569ff540f43a18ea3d3 /modules | |
parent | fa4cd1a232529898a616e86ab89965d5ffc52347 (diff) | |
download | pango-fafd326d3084377bd7436b619dc25e9fdf09fdc0.tar.gz |
coretext: silence compiler
Diffstat (limited to 'modules')
-rw-r--r-- | modules/basic/basic-coretext.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/basic/basic-coretext.c b/modules/basic/basic-coretext.c index 5d0eb074..33ce4798 100644 --- a/modules/basic/basic-coretext.c +++ b/modules/basic/basic-coretext.c @@ -139,6 +139,12 @@ run_iterator_get_glyph_count (struct RunIterator *iter) return accumulator; } +/* These functions are commented out to silence the compiler, but + * kept around because they might be of use when fixing the more + * intricate issues noted in the comment in the function + * basic_engine_shape() below. + */ +#if 0 static gboolean run_iterator_is_rtl (struct RunIterator *iter) { @@ -155,6 +161,7 @@ run_iterator_run_is_non_monotonic (struct RunIterator *iter) return run_status & kCTRunStatusNonMonotonic; } +#endif static gunichar run_iterator_get_character (struct RunIterator *iter) |