Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] Macro Expansion Dialog buttons not working?

Hi,

Indeed, the buttons do not work:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=370590

Marc-Andre

On 7/3/2012 10:45 PM, kesselhaus wrote:
Hi,

Could someone verify, if in the Macro Expansion Dialog, the buttons to step through the expansions are actually enabled in Juno?

I have a macro like

#define XXX(a,b,c)  \
  void xxx_CHK_##b(uint8 chn, uint8 b);  \
  void xxx_TO_##b(void) { xxx_report(xxx_id_##b, TRUE); c(); }  \
void xxx_RX_##b(uint8 p) { xxx_report(xxx_id_##b, FALSE); xxx_CHK_##b(a, p); } \
  void xxx_CHK_##b(uint8 chn, uint8 b)

XXX(CHN0, My_X, DefHnd)
{
}

XXX(CHN0|CHN1, My_Y, DefHnd)
{
}

So, when expanding XXX(CHN0, X;DefHnf) only shows the complete expansion (including CHN0, My_X, DefHnd) but you can not step through.
That was possible in previous CDT versions.



_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/cdt-dev



Back to the top