diff options
| author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-06-26 10:45:31 +0000 |
|---|---|---|
| committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-06-26 10:45:31 +0000 |
| commit | 3f39fc0400009908e12258ea2a15e8f52ec68b69 (patch) | |
| tree | 6b679cc04f6154c8816f1046e297464799060d20 | |
| parent | e92dcf5092f4ea50542faf519fad56078be7ddcd (diff) | |
| download | ppe42-gcc-3f39fc0400009908e12258ea2a15e8f52ec68b69.tar.gz ppe42-gcc-3f39fc0400009908e12258ea2a15e8f52ec68b69.zip | |
2008-06-26 Paolo Carlini <paolo.carlini@oracle.com>
* include/parallel/base.h (plus, multiplies): Use __typeof__,
not typeof.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137145 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
| -rw-r--r-- | libstdc++-v3/include/parallel/base.h | 16 |
2 files changed, 13 insertions, 8 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 78c000ffb10..b159b9ef602 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2008-06-26 Paolo Carlini <paolo.carlini@oracle.com> + + * include/parallel/base.h (plus, multiplies): Use __typeof__, + not typeof. + 2008-06-25 Paolo Carlini <paolo.carlini@oracle.com> * testsuite/29_atomics/atomic_flag/cons/default.cc: Avoid -Wall diff --git a/libstdc++-v3/include/parallel/base.h b/libstdc++-v3/include/parallel/base.h index b713ee7a410..54c26d8ca6d 100644 --- a/libstdc++-v3/include/parallel/base.h +++ b/libstdc++-v3/include/parallel/base.h @@ -287,8 +287,8 @@ struct less<_Tp, _Tp> : public std::binary_function<_Tp, _Tp, bool> template<typename _Tp1, typename _Tp2> struct plus : public std::binary_function<_Tp1, _Tp2, _Tp1> { - typedef typeof(*static_cast<_Tp1*>(NULL) - + *static_cast<_Tp2*>(NULL)) result; + typedef __typeof__(*static_cast<_Tp1*>(NULL) + + *static_cast<_Tp2*>(NULL)) result; result operator()(const _Tp1& __x, const _Tp2& __y) const @@ -299,8 +299,8 @@ template<typename _Tp1, typename _Tp2> template<typename _Tp> struct plus<_Tp, _Tp> : public std::binary_function<_Tp, _Tp, _Tp> { - typedef typeof(*static_cast<_Tp*>(NULL) - + *static_cast<_Tp*>(NULL)) result; + typedef __typeof__(*static_cast<_Tp*>(NULL) + + *static_cast<_Tp*>(NULL)) result; result operator()(const _Tp& __x, const _Tp& __y) const @@ -312,8 +312,8 @@ template<typename _Tp> template<typename _Tp1, typename _Tp2> struct multiplies : public std::binary_function<_Tp1, _Tp2, _Tp1> { - typedef typeof(*static_cast<_Tp1*>(NULL) - * *static_cast<_Tp2*>(NULL)) result; + typedef __typeof__(*static_cast<_Tp1*>(NULL) + * *static_cast<_Tp2*>(NULL)) result; result operator()(const _Tp1& __x, const _Tp2& __y) const @@ -324,8 +324,8 @@ template<typename _Tp1, typename _Tp2> template<typename _Tp> struct multiplies<_Tp, _Tp> : public std::binary_function<_Tp, _Tp, _Tp> { - typedef typeof(*static_cast<_Tp*>(NULL) - * *static_cast<_Tp*>(NULL)) result; + typedef __typeof__(*static_cast<_Tp*>(NULL) + * *static_cast<_Tp*>(NULL)) result; result operator()(const _Tp& __x, const _Tp& __y) const |

