Skip to search.
boost · C++ Boost

Group Information

  • Members: 4382
  • Category: C and C++
  • Founded: Oct 23, 1998
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

  Messages Help
Advanced
Messages 26341 - 26370 of 27136   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
26341 Vladimir Prus
vladimir_prus Offline Send Email
Mar 1, 2002
8:55 am
... I don't think there's consensus on describe vs. load/save question. Having recorded this, I suggest that we postpone this question until other issues are...
26342 Vladimir Prus
vladimir_prus Offline Send Email
Mar 1, 2002
9:02 am
... Shouldn't defining BOOST_NO_CONFIG do that? - Volodya...
26343 quendezus Offline Send Email Mar 1, 2002
10:12 am
... I am a bit uncomfortable with this iarchive/oarchive system. In the previous discussion about persistence on boost, we had a hard debate about what should...
26344 Markus Schöpflin
markus_schoe... Offline Send Email
Mar 1, 2002
10:36 am
Hi there, while porting the format library to MSVC6 and STLport I encountered the following compiler bug: namespace A { template<class T> struct foo{}; } ...
26345 Paul A. Bristow
pabristow_hetp Offline Send Email
Mar 1, 2002
10:42 am
The following code fragment may be helpful in doing this. using formulae by William Kahan // http://http.cs.berkley.edu/~wkahan/ieee754status/ieee754.ps double...
26346 John Maddock
regexpp Offline Send Email
Mar 1, 2002
12:29 pm
... We have a configure script now, what we don't have are test cases and macros for these smart_ptr improvements - guys can you provide some? - John Maddock ...
26347 John Maddock
regexpp Offline Send Email
Mar 1, 2002
12:29 pm
... BOOST_NO_USING_TEMPLATE_ACROSS_NAMESPACE perhaps? Can you not reuse BOOST_NO_USING_TEMPLATE for this? I accept it's not exactly the same issue, but it is...
26348 John Maddock
regexpp Offline Send Email
Mar 1, 2002
12:29 pm
... BOOST_NO_CONFIG - see config docs. - John Maddock http://ourworld.compuserve.com/homepages/john_maddock/...
26349 John Maddock
regexpp Offline Send Email
Mar 1, 2002
12:29 pm
... Done. ... Done. - John Maddock http://ourworld.compuserve.com/homepages/john_maddock/...
26350 John Maddock
regexpp Offline Send Email
Mar 1, 2002
12:29 pm
... that ... Isn't that the wrong way to do things - we can forcibly turn NDEBUG off with: #undef NDEBUG #include <boost/whatever> And then the tests will run...
26351 John Maddock
regexpp Offline Send Email
Mar 1, 2002
12:30 pm
... typedef int& r_type; typedef const r_type cr_type; ... type_traits_test.hpp(278): warning #21: type qualifiers are meaningless in this declaration typedef...
26352 nbecker@...
nealdbecker Offline Send Email
Mar 1, 2002
12:44 pm
... No, I don't think so. Boost must not use headers in the linux kernel source. Kernel headers are for kernel only....
26353 markus_schoepflin
markus_schoe... Offline Send Email
Mar 1, 2002
12:46 pm
... IMO. ... BOOST_NO_USING_TEMPLATE is defined for MSVC, so I can reuse this macro. The documentation for the macro should be updated in this case. What do...
26354 Peter Dimov
boost_pdimov Offline Send Email
Mar 1, 2002
12:47 pm
From: "Rainer Deyke" <root@...> ... Same here, except that lsb_reader/lsb_writer use LSB and are able to read std::vector<long> in a single fread()...
26355 Peter Dimov
boost_pdimov Offline Send Email
Mar 1, 2002
12:54 pm
From: "Vladimir Prus" <ghost@...> ... A single describe() method doesn't work for the following reasons: 1. const correctness. 2. read/write assymetry. ...
26356 Vladimir Prus
vladimir_prus Offline Send Email
Mar 1, 2002
1:13 pm
... 'describe' alone is clearly not enough. It is still usefull. In Jens' code it is possible to overload 'save'/'load' functions to do whatever you like, but ...
26357 Asger Alstrup Nielsen
asgeralstrup Offline Send Email
Mar 1, 2002
1:20 pm
... I agree that 'describe' is very important. I have been using XTL for a long time, and XTL supports the 'describe' way. It works for 95% of all cases, and...
26358 Stewart, Robert
septuagent Offline Send Email
Mar 1, 2002
1:31 pm
From: Beman Dawes [mailto:bdawes@...] ... I hadn't thought of std::nothrow_t, but that is the sort of thing I had in mind. ... You'll get no argument from...
26359 David Abrahams
dave_abrahams Offline Send Email
Mar 1, 2002
2:05 pm
... From: "Douglas Gregor" <gregod@...> ... compiler. I ... a ... So if the type I'm storing is char[6], it will over-align, yes? In my application it's...
26360 davlet_panech Offline Send Email Mar 1, 2002
2:14 pm
... not ... That was my thinking exactly, the non-explicit constructor with one parameter would allow implicit conversion from a string literal: ...
26361 davlet_panech Offline Send Email Mar 1, 2002
2:18 pm
... address_info_list ... and ... Obviously, ... itself ... Yes, and in general we shouldn't make any assumptions about the representation of an address, so...
26362 David Abrahams
dave_abrahams Offline Send Email
Mar 1, 2002
2:20 pm
... From: "John Maddock" <John_Maddock@...> To: <boost@yahoogroups.com> Sent: Friday, March 01, 2002 7:29 AM Subject: Re: [boost] Building boost. ...
26363 Peter Dimov
boost_pdimov Offline Send Email
Mar 1, 2002
2:20 pm
From: "Vladimir Prus" <ghost@...> ... coordinates ... it ... but ... classes ... OK, but in template<class RW> void describe(RW & rw, X & x) { ...
26364 davlet_panech Offline Send Email Mar 1, 2002
2:24 pm
... that ... no ... sending, ... need ... Yes, except that at least some of these conditions do not apply to non-unices (e.g., there is no EPIPE or EINTR on...
26365 Asger Alstrup Nielsen
asgeralstrup Offline Send Email
Mar 1, 2002
2:30 pm
... 1) When saving, the number of elements is written to the stream, and then all elements of the vector is written to the stream using 'describe' on each. 2)...
26366 David Abrahams
dave_abrahams Offline Send Email
Mar 1, 2002
2:30 pm
Has anyone considered describe /types/ instead of describe methods? One very clever system I've seen used globally-declared structure instances to do this job....
26367 Dale Peakall
dale_peakall Offline Send Email
Mar 1, 2002
2:41 pm
... I thought that we'd sort of decided that what we were writing here was a TCP/IP library, not sockets in the more general sense. If you're going to start...
26368 Peter Dimov
boost_pdimov Offline Send Email
Mar 1, 2002
2:42 pm
From: "Asger Alstrup Nielsen" <alstrup@...> ... Thanks for the explanation. :-) ... From what I see(5.2), XTL distinguishes reads from writes...
26369 johan.nilsson@...
judoka1981 Offline Send Email
Mar 1, 2002
2:42 pm
Hi, I've just installed and built STLport 4.5.3 and now I'm trying to build Boost 1.27.0. Compiler is VC.NET (7.0), O/S is WinXP Pro. I've built jam0.exe by...
26370 davlet_panech Offline Send Email Mar 1, 2002
3:02 pm
... I don't think we are going to support anything besides TCP (and possibly UDP), all I'm saying we should try to keep our design flexible to allow for...
Messages 26341 - 26370 of 27136   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help