You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@stdcxx.apache.org by Martin Sebor <se...@roguewave.com> on 2007/11/19 22:27:15 UTC

Re: svn commit: r596354 - /incubator/stdcxx/trunk/tests/utilities/20.auto.ptr.cpp

faridz@apache.org wrote:
> Author: faridz
> Date: Mon Nov 19 08:20:27 2007
> New Revision: 596354
> 
> URL: http://svn.apache.org/viewvc?rev=596354&view=rev
> Log:
> 2007-11-19 Farid Zaripov <fa...@epam.com>
> 
> 	* 20.auto.ptr.cpp (test_auto_ptr): Worked around bug in MSVC 7.x.

Which one? Details please...

Martin

> 
> Modified:
>     incubator/stdcxx/trunk/tests/utilities/20.auto.ptr.cpp
> 
> Modified: incubator/stdcxx/trunk/tests/utilities/20.auto.ptr.cpp
> URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/utilities/20.auto.ptr.cpp?rev=596354&r1=596353&r2=596354&view=diff
> ==============================================================================
> --- incubator/stdcxx/trunk/tests/utilities/20.auto.ptr.cpp (original)
> +++ incubator/stdcxx/trunk/tests/utilities/20.auto.ptr.cpp Mon Nov 19 08:20:27 2007
> @@ -208,11 +208,14 @@
>         // and a conversion operator (see PR #24476)
>  #      if !defined (__SUNPRO_CC) || __SUNPRO_CC > 0x540
>  
> +#        if !defined (_MSC_VER) || _MSC_VER > 1310 || defined (__INTEL_COMPILER)
>      FUN (std::auto_ptr_ref<Base>, Derived,
>           operator std::auto_ptr_ref<Base>, () _PTR_THROWS (()));
>  
>      FUN (std::auto_ptr<Base>, Derived,
>           operator std::auto_ptr<Base>, () _PTR_THROWS (()));
> +
> +#        endif   // MSVC > 7.1
>  
>  #      endif   // SunPro > 5.4
>  
> 
> 


RE: svn commit: r596354 - /incubator/stdcxx/trunk/tests/utilities/20.auto.ptr.cpp

Posted by Farid Zaripov <Fa...@epam.com>.
> -----Original Message-----
> From: Martin Sebor [mailto:sebor@roguewave.com] 
> Sent: Monday, November 19, 2007 11:27 PM
> To: stdcxx-dev@incubator.apache.org
> Subject: Re: svn commit: r596354 - 
> /incubator/stdcxx/trunk/tests/utilities/20.auto.ptr.cpp
> 
> faridz@apache.org wrote:
> > Author: faridz
> > Date: Mon Nov 19 08:20:27 2007
> > New Revision: 596354
> > 
> > URL: http://svn.apache.org/viewvc?rev=596354&view=rev
> > Log:
> > 2007-11-19 Farid Zaripov <fa...@epam.com>
> > 
> > 	* 20.auto.ptr.cpp (test_auto_ptr): Worked around bug in 
> MSVC 7.x.
> 
> Which one? Details please...

  https://issues.apache.org/jira/browse/STDCXX-669

Farid.