Boost logo

Boost :

From: SourceForge.net (noreply_at_[hidden])
Date: 2004-12-16 03:20:16


Bugs item #1086305, was opened at 2004-12-16 11:20
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=107586&aid=1086305&group_id=7586

Category: lexical_cast
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Sergej Zagursky (seza)
Assigned to: Kevlin Henney (kevlin)
Summary: incorrect conditions to #define DISABLE_WIDE_CHAR_SUPPORT

Initial Comment:
I think absence of BOOST_NO_INTRINSIC_WCHAR_T isn't a
requirement for DISABLE_WIDE_CHAR_SUPPORT definition.

Suggested fix:
//old code
#if defined(BOOST_NO_STRINGSTREAM) || defined(BOOST_NO_STD_WSTRING) || defined(BOOST_NO_STD_LOCALE) || defined(BOOST_NO_INTRINSIC_WCHAR_T)
#define DISABLE_WIDE_CHAR_SUPPORT
#endif

//new code
#if defined(BOOST_NO_STRINGSTREAM) || defined(BOOST_NO_STD_WSTRING) || defined(BOOST_NO_STD_LOCALE)
#define DISABLE_WIDE_CHAR_SUPPORT
#endif

----------------------------------------------------------------------

You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=107586&aid=1086305&group_id=7586

-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
_______________________________________________
Boost-bugs mailing list
Boost-bugs_at_[hidden]
https://lists.sourceforge.net/lists/listinfo/boost-bugs


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk