summaryrefslogtreecommitdiff
path: root/src/accum.h
Commit message (Collapse)AuthorAgeFilesLines
* Added --verify-memory and missing TRACE_[CD]TOR callsJohn Wiegley2012-03-181-1/+10
|
* Refactored the notion of "the current parsing context"John Wiegley2012-03-011-2/+8
|
* Increased file copyrights to 2012John Wiegley2012-02-291-1/+1
|
* Added STR() utility functionJohn Wiegley2012-02-291-0/+8
|
* Untabified all source filesJohn Wiegley2010-06-111-1/+1
|
* Corrections to the way error strings are generatedJohn Wiegley2010-06-101-1/+3
|
* Updated copyrights to 2003-2010John Wiegley2010-03-051-1/+1
|
* Removed a bunch of empty commentsJohn Wiegley2009-11-081-14/+0
|
* Fixed many compiler warnings from g++ 4.4John Wiegley2009-10-251-2/+2
|
* Use a "format accumulator" for error stringsJohn Wiegley2009-02-211-0/+100
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;