summaryrefslogtreecommitdiff
path: root/src/accum.cc
Commit message (Collapse)AuthorAgeFilesLines
* Untabified all source filesJohn Wiegley2010-06-111-10/+10
|
* Corrections to the way error strings are generatedJohn Wiegley2010-06-101-4/+2
|
* Updated copyrights to 2003-2010John Wiegley2010-03-051-1/+1
|
* Fixed many compiler warnings from g++ 4.4John Wiegley2009-10-251-1/+1
|
* Enabled use of pre-compiled headers by defaultJohn Wiegley2009-03-101-0/+2
|
* Fixed an accumulator bug that was mangling errorsJohn Wiegley2009-02-211-1/+5
|
* Use a "format accumulator" for error stringsJohn Wiegley2009-02-211-0/+70
This makes it possible to internationalize strings while still using I/O streams. For example: std::cout << ACCUM(_("Hello to %1 and %2!") << "me" << "you") << std::endl;