[Boost-bugs] [ boost-Bugs-1402744 ] crach build from borland 5.6.4

Bugs item #1402744, was opened at 2006-01-11 16:45 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=1402744&group_id=7586 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: filesystem Group: None Status: Open Resolution: None Priority: 5 Submitted By: Alexandr Zamaraev (shura_zam) Assigned to: Beman Dawes (beman_dawes) Summary: crach build from borland 5.6.4 Initial Comment: Error file boost\boost\filesystem\path.hpp in line 589 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=107586&aid=1402744&group_id=7586 ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click _______________________________________________ Boost-bugs mailing list Boost-bugs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/boost-bugs

Assigned to: Beman Dawes (beman_dawes) Summary: crach build from borland 5.6.4 Error file boost\boost\filesystem\path.hpp in line 589
(Latest CVS version.) BCB decides Path::string_type is char (unsigned char, signed char) and fails to find its string_type and value_type. Either the code block can be commented out (like it is for VC6, VC7.0) with #if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) (tested, works) or specialisations for char, signed char, unsigned char and wchar_t can be created for BCB instead of one generic one (tested, also works). Example: template< class Path > std::basic_ostream<char, std::char_traits<char> > & operator<< (std::basic_ostream< char, std::char_traits<char> >& os, const Path & ph) { os << ph.string(); return os; } // other specialisations /Pavel
participants (2)
-
Pavel Vozenilek
-
SourceForge.net