This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ 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] | |
... but isn't __add_signed necessary anyway, from out point of view? Imean, we would have,
template<typename _Value> struct __add_signed { typedef _Value __type; };
template<> struct __add_signed<char> { typedef signed char __type; };
...
template<typename _Value> struct __remove_signed { typedef _Value __type; };
template<> struct __remove_signed<signed char> { typedef char __type; };
...
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |