To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=71404
                 Issue #|71404
                 Summary|VC 2005 Express has problems with stl remove
               Component|porting
                 Version|1.0.0
                Platform|All
                     URL|
              OS/Version|Windows XP
                  Status|NEW
       Status whiteboard|
                Keywords|
              Resolution|
              Issue type|PATCH
                Priority|P3
            Subcomponent|code
             Assigned to|obo
             Reported by|npower





------- Additional comments from [EMAIL PROTECTED] Fri Nov 10 02:08:13 -0800 
2006 -------
when building openoffice ( admittedly the ooo-build variant, but that shouldn't
matter ) I get lots of errors like 

 
C:\cygwin\home\NoelPower\ooo-windows\ooo-build\build\src680-m190\vcl\source\gdi\outdev3.cxx(3205)
: error C2660: 'remove' : function does not take 3 arguments^Mdmake:  Error code
2, while making '../../wntmsci11.pro/slo/outdev3.obj'

while trying to force the compiler to spit out something more usful about the
remove it was resolving I noticed it compiles finr when you don't include the
std namespace.

after that I noticed some existing instances where it seems a similar problem
was encountered previously

( example from slideshow/source/engine/presentation.cxx

#if defined(_MSC_VER) && (_MSC_VER > 1310)
        if( (aListener=remove( aIter->second.begin(), aEnd, xListener ))
#else
        if( (aListener=::std::remove( aIter->second.begin(), aEnd, xListener ))
#endif

I have a patch of all of the places where the build failed that add the pattern
 above to conditionally remove the std.

however I have no idea why this is happening, any ideas, hints etc. I'd be
grateful for any info

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to