This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: why are we not using const?


"Kaveh R. Ghazi" <ghazi@caipclassic.rutgers.edu> writes:

> #define TREE_CHECK(T, CODE) __extension__ \
> ({  const_tree const __t = (T); \

How about
    typeof(T) const __t = (T);
?

Ian


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]