27 Jul
2007
27 Jul
'07
9:08 p.m.
On Friday, July 27, 2007 at 16:40:05 (-0400) Jeff Flinn writes:
Bill Lear wrote:
I have been searching the world in vain for a stringstream that works with a static buffer, and does not use the heap for memory allocation. We have an application that uses lots (12-16Gb) of memory. This puts a strain on the memory allocation routines, and when we want to create
Which platform?
Linux, with Intel and gcc compilers.
Have you looked at the boost::iostream library which abstracts out sources/sinks that you can use with buffers that you control?
Also have you looked at the boost::format library as a typesafe replacement for sprintf?
Hmm, not yet, but thanks for the pointers. Bill