Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] problem indexing files

Hi,
I have problem indexing some files,

#include "consts.h"

switch {x}
#include "switch_.h"
default:break;
}


consts.h is part of another project and contains :
#define M30 0x3330
#define M31 0x3331


switch_.h :
case M30 :
    blablah
    break;
case M31:
    ... blahblahblah
    break;

in switch_.h the macros M30 and so on are not recognized by eclipse.

Regards
Steph


Back to the top