diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-01-16 15:52:37 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-01-23 16:05:00 +0100 |
commit | b77dfdc9e36e308aa806d63aa3b5628971789d5a (patch) | |
tree | 555894b6364e76c4a5c3d7962f6991de1f5588f8 /src/Makefile.am | |
parent | 53e9d3aa44e24fecd2d58984baff3cb4af23c12e (diff) |
Typesafe strprintf/error/LogPrint functions
Switch to tinyformat-based formatting.
Tinyformat is a typesafe drop-in replacement for C99 printf functions:
https://github.com/c42f/tinyformat
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index f27f16ab91..da842a9e6f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -60,6 +60,7 @@ BITCOIN_CORE_H = \ serialize.h \ sync.h \ threadsafety.h \ + tinyformat.h \ txdb.h \ txmempool.h \ ui_interface.h \ |