lilypond-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Font metric unused variable


From: Patrick McCarty
Subject: Re: Font metric unused variable
Date: Wed, 21 Jul 2010 11:49:36 -0700

On Wed, Jul 21, 2010 at 11:43 AM, Patrick McCarty <address@hidden> wrote:
> On Wed, Jul 21, 2010 at 4:51 AM, Mike Solomon <address@hidden> wrote:
>> Hey all,
>>    In compiling lilypond this morning, I saw this:
>>
>> font-metric.cc:82: warning: unused parameter 'k'
>>
>> Checking out the function in question, I saw this:
>>
>> Box
>> Font_metric::get_indexed_char_dimensions (size_t k) const
>> {
>>  return Box (Interval (0, 0), Interval (0, 0));
>> }
>>
>> Not knowing what this function is supposed to do, I am not sure if this is a
>> problem, but if k is not necessary, perhaps:
>>
>> Box
>> Font_metric::get_indexed_char_dimensions (size_t) const
>> {
>>  return Box (Interval (0, 0), Interval (0, 0));
>> }
>>
>> would be better?
>
> Yeah, these type of warnings show up once in a while.  Another one
> appears when compiling pango-font.cc.
>
> I'll fix them shortly.

On second thought, I won't bother for now, since this patch (still to
be reviewed) fixes it:

http://codereview.appspot.com/1724041/show

Thanks,
Patrick



reply via email to

[Prev in Thread] Current Thread [Next in Thread]