updated jamfile, fixed Windows XP problems

[SVN r10840]
This commit is contained in:
John Maddock
2001-08-11 11:47:12 +00:00
parent a06c964cab
commit e1492c79ce
3 changed files with 27 additions and 4 deletions

View File

@ -117,9 +117,9 @@ int main()
std::copy(s1.begin(), s1.end(), string_out_iterator<std::wstring>(ws1));
#endif
try{
ex.assign(s1.begin(), s1.end());
ex.assign(s1);
#ifndef BOOST_RE_NO_WCSTRING
wex.assign(ws1.begin(), ws1.end());
wex.assign(ws1);
#endif
}
catch(std::exception& e)