aboutsummaryrefslogtreecommitdiff
path: root/src/tinyformat.h
Commit message (Collapse)AuthorAgeFilesLines
* Move `*Version()` functions to version.h/cppWladimir J. van der Laan2014-08-261-0/+1
|
* Move strprintf define to tinyformat.hWladimir J. van der Laan2014-08-201-0/+2
| | | | This avoids a dependency on util.h if just tinyformat is needed.
* Make tinyformat errors raise an exception instead of assert()ingWladimir J. van der Laan2014-02-281-1/+1
| | | | | | | | By default tinyformat errors such as 'wrong number of conversion specifiers in format string' cause an assertion failure. Raise an exception instead so that error handling can recover or can show an appropriate error.
* Typesafe strprintf/error/LogPrint functionsWladimir J. van der Laan2014-01-231-0/+1010
Switch to tinyformat-based formatting. Tinyformat is a typesafe drop-in replacement for C99 printf functions: https://github.com/c42f/tinyformat