diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-01-16 15:52:37 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-01-23 16:05:00 +0100 |
| commit | b77dfdc9e36e308aa806d63aa3b5628971789d5a (patch) | |
| tree | 555894b6364e76c4a5c3d7962f6991de1f5588f8 /src/Makefile.am | |
| parent | build: fix typo in configure help message (diff) | |
| download | discoin-b77dfdc9e36e308aa806d63aa3b5628971789d5a.tar.xz discoin-b77dfdc9e36e308aa806d63aa3b5628971789d5a.zip | |
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 f27f16ab9..da842a9e6 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 \ |