RE: [boost] Re: Regression tests not configured properly with Comeau

2003-06-16 Thread Misha Bergal
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Saturday, June 14, 2003 4:32 PM ... > In article <[EMAIL PROTECTED]>, > Beman Dawes <[EMAIL PROTECTED]> wrote: > >I've been working with Greg Comeau for the last couple of > weeks trying > >to > >resolve v

Re: [boost] BOOST_STATIC_WARNING ?

2003-06-16 Thread John
> >Subject: Re: [boost] BOOST_STATIC_WARNING ? > From: "John Maddock" <[EMAIL PROTECTED]> > Date: Sun, 15 Jun 2003 12:55:15 +0100 > To: "Boost mailing list" <[EMAIL PROTECTED]> > >> I find BOOST_STATIC_ASSERT(...) extremely useful. >> >> I would also find BOOST_STATIC_WARNING(...) extremel

[boost] BOOST_STATIC_ASSERT: was BOOST_STATIC_WARNING ?

2003-06-16 Thread John
> >BOOST_STATIC_WARNING( "we're in boost_file.hpp") Ok, the example was a little bit stupid, but you get the point. (should have somehow been BOOST_STATIC_WARNING(WCHAR_MIN >= 0);) By the way, why not extend the BOOST_STATIC_ASSERT a la Andrei: BOOST_STATIC_ASSERT( sizeof(type) > 1, type_should_c

[boost] Novell NetWare support (filesystem), patch

2003-06-16 Thread Petr Ovchenkov
I made attempt to use boost's filesystem on Novell NetWare (Metrowerks CodeWarrior compiler). See attached patch to boost 1.30.0 below. - Petr Ovchenkov diff -c -r -x CVS boost_1_30_0/libs/filesystem/src/exception.cpp boost/libs/filesystem/src/exception.cpp *** boost_1_30_0/libs/filesystem/src

Re: [boost] no licence or copyright in boost/any.hpp

2003-06-16 Thread Peter Dimov
John Maddock wrote: > Subject says it all, as it stands boost/any.hpp isn't even open > source, please reuse an existing boost licence if possible, thanks, The license is at the end. ___ Unsubscribe & other changes: http://lists.boost.org/mailman/listinf

Re: [boost] Re: Licence proliferation (Graph library)

2003-06-16 Thread John Maddock
> I would not mind to change my copyrights to use different wording --- either > the one from function library or the "standard" one. The only problem is > that > >boost/graph/transitive_closure.hpp > > is generated from > >libs/graph/doc/transitive_closure.w > > and only Jeremy knows how.

Re: [boost] No copyright or licenceinboost/date_time/microsec_time_clock.hpp

2003-06-16 Thread John Maddock
> Done. Thanks! John. ___ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Re: [boost] decorated streambufs

2003-06-16 Thread Larry Evans
Larry Evans wrote: [snip] The code mentioned MAY be very similar to that of J. Kanze available at: The articles at: http://www.gabi-soft.fr/articles-en.html pretty much confirms that Kanze's code does more (and possibly does it better) than my code at files/col_io/test_ostreambuf_decorator.zi

Re: [boost] Re: Any Interest in an Adapter for Sequences of Pointers?

2003-06-16 Thread jvd
Discussion about sequences of pointers is quite interesting, perhaps sequences of pointees would be more general problem (remember boost::optional lib.) actually, to have something that allows to operate intuitivelly on sequences of pointees is a very nice idea. Regards, Justinas V.D.

[boost] The Boost C++ Metaprogramming Library (small slips in docs)

2003-06-16 Thread John
Hi, While reading The Boost C++ Metaprogramming Library (http://www.boost.org/libs/mpl/doc/paper/mpl_paper.html), at section 2.2.1 template< typename T1, typename T2 > struct derive { struct type : N1, N2 {}; }; should be: template< typename T1, typename T2 > struct derive { struct

[boost] Re: Re: Regression tests not configured properly with Comeau

2003-06-16 Thread Greg Comeau
In article <[EMAIL PROTECTED]>, Misha Bergal <[EMAIL PROTECTED]> wrote: >> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >> In article <[EMAIL PROTECTED]>, >> Beman Dawes <[EMAIL PROTECTED]> wrote: >> >I've been working with Greg Comeau for the last couple of >> >weeks trying to >> >resolve

[boost] Re: Any Interest in an Adapter for Sequences of Pointers?

2003-06-16 Thread David Abrahams
"jvd" <[EMAIL PROTECTED]> writes: > Discussion about sequences of pointers is quite interesting, > perhaps sequences of pointees would be more general problem > (remember boost::optional lib.) actually, to have something that > allows to operate intuitivelly on sequences of pointees is a very nice

RE: [boost] Re: Regression tests not configured properly with Com eau

2003-06-16 Thread Beman Dawes
At 03:28 AM 6/16/2003, Misha Bergal wrote: > >> -Original Message- >> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >> Sent: Saturday, June 14, 2003 4:32 PM >... >> In article <[EMAIL PROTECTED]>, >> Beman Dawes <[EMAIL PROTECTED]> wrote: >> >I've been working with Greg Comeau for the

Re: [boost] is_class_test experimental status table results

2003-06-16 Thread Beman Dawes
No one replied to this, which I'm interpreting as an "OK". Thus I've committed the changes to tools/regression/process_jam_log.cpp and compiler_status.cpp to implement the change. Also, I'd say John should go ahead and make the corresponding change to is_union_test. --Beman At 05:49 PM 6/13/2

[boost] max_size() workaround?

2003-06-16 Thread Gennaro Prota
Is this of any interest for boost? Some library implementations (for instance STLport) return a value of container::max_size that doesn't depend on the corresponding allocator. For instance, for vector STLport returns: size_type(-1) / sizeof(T) As a result, if one uses his own allocator which

RE: [boost] RE: Re: Math Constants Formal Review - is extensible.

2003-06-16 Thread Paul A Bristow
I understand that this is not normal, but in this case there is a lot of work to do to create the files and I am reluctant to do this if the result is not ultimately going to be accepted. So I'd prefer agreement in principle first to the way of presenting the constants, and to the actual constants

[boost] Exception testing for Boost.Test incomplete

2003-06-16 Thread Daryle Walker
While writing some other code, I checked out how some of the macros in Boost.Test are implemented. The BOOST_CHECK_THROW and BOOST_CHECK_EXCEPTION macros flag when an intentional exception was missed and when the expected exception type was caught. But what about when an exception of the _wro

[boost] Added auto_array to sandbox

2003-06-16 Thread Daryle Walker
In the Boost sandbox CVS, I started a memory library with auto_array, an array-based variant of std::auto_ptr. It's in the following files ROOT/boost/memory_fwd.hpp ROOT/boost/memory/auto_array.hpp ROOT/boost/libs/memory/doc/auto_array.html ROOT/boost/libs/memory/

[boost] Re: Exception testing for Boost.Test incomplete

2003-06-16 Thread Gennadiy Rozental
"Daryle Walker" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > While writing some other code, I checked out how some of the macros in > Boost.Test are implemented. The BOOST_CHECK_THROW and > BOOST_CHECK_EXCEPTION macros flag when an intentional exception was > missed and when the

[boost] Weak pointers owning object

2003-06-16 Thread Bruno Martínez
Hi, I was wondering if it was possible to have two weak pointers that together own an object. That is, if one of the two is destroyed the other fails to construct a shared_ptr, but as long as both exist the object is not destroyed, even if no other weak/shared ptr exists. This would come handy

Re: [boost] BOOST_STATIC_WARNING ?

2003-06-16 Thread Daryle Walker
On Sunday, June 15, 2003, at 10:15 AM, Robert Ramey wrote: H - I never imagined that something like this would be so problematic. For now with my VC 7.0 compiler I can use the following and it gives me almost exactly what I need. The warning message points exactly to the place in my code

[boost] [Boost-bugs] [ boost-Bugs-755724 ] teststatic_assert/static_assert_example_1.cpp is invalid

2003-06-16 Thread SourceForge.net
Bugs item #755724, was opened at 2003-06-17 10:19 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=755724&group_id=7586 Category: static_assert Group: None Status: Open Resolution

Re: [boost] BOOST_STATIC_WARNING ?

2003-06-16 Thread Robert Ramey
John Maddok wrote: >Another problem (I think) is that with BOOST_STATIC_ASSERT you know compilation will >stop. >However, a BOOST_STATIC_WARNING would keep re-apearing in each translation unit >#including your file: >// boost_file.hpp >BOOST_STATIC_WARNING( "we're in boost_file.hpp") >// fil

[boost] Re: Changed CRC

2003-06-16 Thread Daryle Walker
On Monday, June 16, 2003, at 9:09 AM, Vladimir Prus wrote: Daryle Walker wrote: In CVS, I added an example file to the CRC library. I changed the documentation to point to the example file. Daryle, I see this code in the example: do { ifs.read( buffer