... Thanks, Daryle! I guess I should write a program to scan for long names before each release. None of us seem to be able to remember this limit. Hard to ...
Beman Dawes
beman@...
May 1, 2001 8:18 am
11491
... What would you use it for? ... From: Daryle Walker [mailto:darylew@...] Sent: Tuesday, May 01, 2001 12:11 PM To: Boost Subject: [boost] is_polymorphic?...
Murray, Peter C
Peter.Murray@...
May 1, 2001 8:24 am
11492
Denis, It is in the files/vault. Follow the link on the www.boost.org home page. Remember that it is a work in process, not an accepted boost library. Cheers,...
Beman Dawes
beman@...
May 1, 2001 8:25 am
11493
... Indeed, but "taking the address" isn't meant in the specific sense of applying operator& to it. ... Further on, in the existing standard text, it says ... ...
Jens Maurer
Jens.Maurer@...
May 1, 2001 8:33 am
11494
... Yes. ... Please read carefully: It says "where an integral constant expression is *required*" (emphasis mine). Jens Maurer...
Jens Maurer
Jens.Maurer@...
May 1, 2001 8:50 am
11495
... I meant something like this... template<class T> class math { static T const pi; }; // single precision template<> class math<float> { static float const...
k.hagan@...
May 1, 2001 9:10 am
11496
... Does that really work? In any case the result is not an integral constant expression (like the rest of the type traits classes), so it's hard to see how...
John Maddock
John_Maddock@...
May 1, 2001 11:19 am
11497
... as ... Fair enough, BTW I forgot to mention there is a high level wrapper class called RegEx that does work only on strings. ... to match std::pair,...
John Maddock
John_Maddock@...
May 1, 2001 11:57 am
11498
... I'm not sure whether we want to have a singular implementation into boost without thinking about the interface issues, e.g. how to concatenate the...
Jens Maurer
Jens.Maurer@...
May 1, 2001 12:03 pm
11499
... Thanks, done. Jens Maurer...
Jens Maurer
Jens.Maurer@...
May 1, 2001 12:05 pm
11500
From: "Doug Gregor" <gregod@...> ... grey ... With undefined behavior, more or less, unless boost::function uses 'mutable' internally. However, in this...
Peter Dimov
pdimov@...
May 1, 2001 3:21 pm
11501
... I would argue that this is actually correct semantic behavior. Isn't boost::function supposed to be a generalized function pointer that can bind to both...
Brad King
brad.king@...
May 1, 2001 6:55 pm
11502
http://www.eskimo.com/~weidai/cryptlib.html Has everything... The license is quite relaxed. Maybe it is boostable? Joel ... From: Jens Maurer...
Joel Young
jdy@...
May 1, 2001 7:34 pm
11503
I have an implementation for a circular (ring) buffer that may be of general interest. I find it very useful for signal processing applications (delay line,...
nbecker@...
May 1, 2001 9:18 pm
11504
... boost::function essentially does use 'mutable' internally, because the type erasure done to remove virtual functions uses free function pointers. It isn't...
Doug Gregor
gregod@...
May 1, 2001 11:00 pm
11505
I have investigated this further but see snags. namespace boost { namespace math { // Example from // B Stroustrup ISBN 0 201 70073 5, p 854 template<class T>...
Paul A. Bristow
pbristow@...
May 1, 2001 11:47 pm
11506
... That's okay, I forgot to mention that I read about RegEx in the docs! As I recall, I decided not to use it because it only handles POSIX expressions ...
Chris
chris@...
May 2, 2001 12:14 am
11507
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the boost group. File :...
boost@yahoogroups.com
May 2, 2001 1:32 am
11508
... [snip] I went with option #2 because it is much less surprising for the user. The updated archive is at: ...
Doug Gregor
gregod@...
May 2, 2001 2:01 am
11509
... I believe this can be done easily with cvs server. Petr Kocmid pkocmid@......
Petr Kocmid
pkocmid@...
May 2, 2001 2:11 am
11510
Salut, ... [...] I have one question: My g++ v2.95.4 (and 2.95.3) allows static const members to be initialized in the the class declaration: template<...
boost
boost@...
May 2, 2001 8:26 am
11511
... I think there is a difference between the const'ness of a functor and the const'ness of the underlying function/method; just like in the STL: the member ...
Rene Jager
renej@...
May 2, 2001 8:49 am
11512
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the boost group. File : /dlw_oprs.zip ...
boost@yahoogroups.com
May 2, 2001 10:06 am
11513
... regex.h is for POSIX standard API's only: regcomp, regexec etc, it's really just there for C compatability. If you look in the docs for reg_expression the...
John Maddock
John_Maddock@...
May 2, 2001 11:08 am
11514
Daryle, The latest crc code is getting there, but there are still problems: I had to change: #ifndef __BORLANDC__ #define BOOST_CRC_REF_OUT_VAL reflect_output...
John Maddock
John_Maddock@...
May 2, 2001 11:10 am
11515
boosters, I've recently rewritten the compressed pair test code, and come across some problems with VC6. The problem occurs when one of the two types is an ...
John Maddock
John_Maddock@...
May 2, 2001 11:10 am
11516
I've added a minor fix to this file for Borland C++ (which doesn't define WCHAR_MAX/WCHAR_MIN). - John Maddock ...
John Maddock
John_Maddock@...
May 2, 2001 11:10 am
11517
From: "Doug Gregor" <gregod@...> ... type ... to ... Yep, you're right, I had another implementation in mind when I wrote that. ... -- Peter Dimov Multi...
Peter Dimov
pdimov@...
May 2, 2001 12:32 pm
11518
From: "Rene Jager" <renej@...> ... I think that we're talking about different things here. Some examples: int f(int x); // the function object &f has a...
Peter Dimov
pdimov@...
May 2, 2001 12:38 pm
11519
From: "Peter Schmitteckert (boost)" <boost@...> ... initialized in ... You can ask g++, and it will tell you. Run this program through it: ...