why are we not using const?

Ian Lance Taylor iant@google.com
Fri Jul 14 18:17:00 GMT 2006


"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



More information about the Gcc mailing list