Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 82992 Details for
Bug 127400
build errors in pose-3.5-r4
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
pose-3.5-typename-fix.patch
pose-3.5-typename-fix.patch (text/plain), 1.74 KB, created by
Simon Ruggier
on 2006-03-24 02:35:59 UTC
(
hide
)
Description:
pose-3.5-typename-fix.patch
Filename:
MIME Type:
Creator:
Simon Ruggier
Created:
2006-03-24 02:35:59 UTC
Size:
1.74 KB
patch
obsolete
>--- Emulator_Src_3.5/SrcShared/EmStream.h 2002-03-29 08:11:14.000000000 -0500 >+++ Emulator_Src_3.5-r1/SrcShared/EmStream.h 2006-03-23 16:49:46.000000000 -0500 >@@ -90,7 +90,7 @@ > > container.resize (numElements); > >- deque<T>::iterator iter = container.begin (); >+ typename deque<T>::iterator iter = container.begin (); > while (iter != container.end ()) > { > *this >> *iter; >@@ -108,7 +108,7 @@ > > container.resize (numElements); > >- list<T>::iterator iter = container.begin (); >+ typename list<T>::iterator iter = container.begin (); > while (iter != container.end ()) > { > *this >> *iter; >@@ -126,7 +126,7 @@ > > container.resize (numElements); > >- vector<T>::iterator iter = container.begin (); >+ typename vector<T>::iterator iter = container.begin (); > while (iter != container.end ()) > { > *this >> *iter; >@@ -143,7 +143,7 @@ > > *this << numElements; > >- deque<T>::const_iterator iter = container.begin (); >+ typename deque<T>::const_iterator iter = container.begin (); > while (iter != container.end ()) > { > *this << *iter; >@@ -160,7 +160,7 @@ > > *this << numElements; > >- list<T>::const_iterator iter = container.begin (); >+ typename list<T>::const_iterator iter = container.begin (); > while (iter != container.end ()) > { > *this << *iter; >@@ -177,7 +177,7 @@ > > *this << numElements; > >- vector<T>::const_iterator iter = container.begin (); >+ typename vector<T>::const_iterator iter = container.begin (); > while (iter != container.end ()) > { > *this << *iter;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 127400
:
82991
| 82992 |
82993
|
82994