-
johnmaddock added the boost_pdf_1_38_0.tar.bz2 file.
10:23AM UTC on Feb 22 2009 in Boost C++ Libraries
-
johnmaddock added the boost_pdf_1_38_0.zip file.
05:52PM UTC on Feb 21 2009 in Boost C++ Libraries
-
johnmaddock added the boost_pdf_1_38_0.7z file.
05:51PM UTC on Feb 21 2009 in Boost C++ Libraries
-
johnmaddock created the 1.38.0 file release.
04:59PM UTC on Feb 21 2009 in Boost C++ Libraries
-
johnmaddock registered the Distribution Explorer project.
05:12PM UTC on May 10 2008 in Distribution Explorer
-
No problem waiting for 5.2: I have to support older STLport versions in any case.
Thanks for looking into this, John Maddock.
08:18AM UTC on Oct 17 2007 in STLport
-
The following code snippet is a boiled down test case from Boost lexical_cast:
const char* p = "2.718281828459045235360287471352662497757247093e0";
std::stringstream s;
s << p;
long double x;
s >> x;
When x is type long double (and compiled with VC8) it gets the spurious value 5.6611421590039250e-015, but when x is declared as a double it does work as expected.
Any...
05:35PM UTC on Oct 10 2007 in STLport
-
There appears to be a bug in the implementation of collation within std::locale, that causes the code below to abort with an internal STLPort error when built with _STLP_DEBUG.
This currently prevents Boost.Regex from passing all it's tests when used with STLport-5.1.2.
Regards, John Maddock.
Here's the code:
void test_tranform()
{
std::locale l("en");
const...
04:37PM UTC on Sep 05 2007 in STLport
-
File Added: rope_fix.diff.
04:34PM UTC on Sep 05 2007 in STLport
-
While testing Boost.Regex with std::rope I found a bug in std::rope's iterators that hits as follows:
If I dereference an iterator, and then save a copy of the iterator, then increment the iterator past the end of the current leaf node, and then restore from the copy, the result is a bad iterator that can not be used to traverse the rope.
I'm attaching an updated unit test that illustrates...
04:33PM UTC on Sep 05 2007 in STLport