Commit d1d9d0f697f26feffe06116977c7c50f81dabb94

  • avatar
  • Petr Ovtchenkov (Committer)
  • Tue Aug 18 10:10:39 CEST 2009
  • avatar
  • David Deakins <DavidDeakins @gm…l.com> (Author)
  • Mon Aug 17 00:15:10 CEST 2009
Undef complex macro for Windows CE.

Undef the macro in the Windows CE CRT headers that
transforms complex to _complex since this inteferes
with use of std::complex.
  
3030# include <stl/_cmath.h>
3131#endif
3232
33#ifdef _STLP_WCE
34// The Windows CE CRT headers define a macro to transform complex to _complex. This
35// interferes with use of std::complex.
36# undef complex
37#endif
38
3339_STLP_BEGIN_NAMESPACE
3440
3541template <class _Tp>