Search the web
Sign In
New User? Sign Up
boost · C++ Boost
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 26341 - 26370 of 27136   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
26341
... 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...
Vladimir Prus
vladimir_prus
Offline Send Email
Mar 1, 2002
8:55 am
26342
... Shouldn't defining BOOST_NO_CONFIG do that? - Volodya...
Vladimir Prus
vladimir_prus
Offline Send Email
Mar 1, 2002
9:02 am
26343
... 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...
quendezus
Offline Send Email
Mar 1, 2002
10:12 am
26344
Hi there, while porting the format library to MSVC6 and STLport I encountered the following compiler bug: namespace A { template<class T> struct foo{}; } ...
Markus Schöpflin
markus_schoe...
Offline Send Email
Mar 1, 2002
10:36 am
26345
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...
Paul A. Bristow
pabristow_hetp
Offline Send Email
Mar 1, 2002
10:42 am
26346
... 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 ...
John Maddock
regexpp
Offline Send Email
Mar 1, 2002
12:29 pm
26347
... 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...
John Maddock
regexpp
Offline Send Email
Mar 1, 2002
12:29 pm
26348
... BOOST_NO_CONFIG - see config docs. - John Maddock http://ourworld.compuserve.com/homepages/john_maddock/...
John Maddock
regexpp
Offline Send Email
Mar 1, 2002
12:29 pm
26349
... Done. ... Done. - John Maddock http://ourworld.compuserve.com/homepages/john_maddock/...
John Maddock
regexpp
Offline Send Email
Mar 1, 2002
12:29 pm
26350
... 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...
John Maddock
regexpp
Offline Send Email
Mar 1, 2002
12:29 pm
26351
... 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...
John Maddock
regexpp
Offline Send Email
Mar 1, 2002
12:30 pm
26352
... No, I don't think so. Boost must not use headers in the linux kernel source. Kernel headers are for kernel only....
nbecker@...
nealdbecker
Offline Send Email
Mar 1, 2002
12:44 pm
26353
... 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...
markus_schoepflin
markus_schoe...
Offline Send Email
Mar 1, 2002
12:46 pm
26354
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()...
Peter Dimov
boost_pdimov
Offline Send Email
Mar 1, 2002
12:47 pm
26355
From: "Vladimir Prus" <ghost@...> ... A single describe() method doesn't work for the following reasons: 1. const correctness. 2. read/write assymetry. ...
Peter Dimov
boost_pdimov
Offline Send Email
Mar 1, 2002
12:54 pm
26356
... '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 ...
Vladimir Prus
vladimir_prus
Offline Send Email
Mar 1, 2002
1:13 pm
26357
... 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...
Asger Alstrup Nielsen
asgeralstrup
Online Now Send Email
Mar 1, 2002
1:20 pm
26358
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...
Stewart, Robert
septuagent
Offline Send Email
Mar 1, 2002
1:31 pm
26359
... 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...
David Abrahams
dave_abrahams
Offline Send Email
Mar 1, 2002
2:05 pm
26360
... not ... That was my thinking exactly, the non-explicit constructor with one parameter would allow implicit conversion from a string literal: ...
davlet_panech
Offline Send Email
Mar 1, 2002
2:14 pm
26361
... address_info_list ... and ... Obviously, ... itself ... Yes, and in general we shouldn't make any assumptions about the representation of an address, so...
davlet_panech
Offline Send Email
Mar 1, 2002
2:18 pm
26362
... From: "John Maddock" <John_Maddock@...> To: <boost@yahoogroups.com> Sent: Friday, March 01, 2002 7:29 AM Subject: Re: [boost] Building boost. ...
David Abrahams
dave_abrahams
Offline Send Email
Mar 1, 2002
2:20 pm
26363
From: "Vladimir Prus" <ghost@...> ... coordinates ... it ... but ... classes ... OK, but in template<class RW> void describe(RW & rw, X & x) { ...
Peter Dimov
boost_pdimov
Offline Send Email
Mar 1, 2002
2:20 pm
26364
... 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...
davlet_panech
Offline Send Email
Mar 1, 2002
2:24 pm
26365
... 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)...
Asger Alstrup Nielsen
asgeralstrup
Online Now Send Email
Mar 1, 2002
2:30 pm
26366
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....
David Abrahams
dave_abrahams
Offline Send Email
Mar 1, 2002
2:30 pm
26367
... 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...
Dale Peakall
dale_peakall
Offline Send Email
Mar 1, 2002
2:41 pm
26368
From: "Asger Alstrup Nielsen" <alstrup@...> ... Thanks for the explanation. :-) ... From what I see(5.2), XTL distinguishes reads from writes...
Peter Dimov
boost_pdimov
Offline Send Email
Mar 1, 2002
2:42 pm
26369
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...
johan.nilsson@...
judoka1981
Offline Send Email
Mar 1, 2002
2:42 pm
26370
... 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...
davlet_panech
Offline Send Email
Mar 1, 2002
3:02 pm
Messages 26341 - 26370 of 27136   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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