diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-08-20 10:51:18 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-08-20 10:51:18 +0200 |
| commit | 9b6d4c5cdc1ad7b12b8b7ba05125dad9ba2d396e (patch) | |
| tree | b01df59917737742391c04a1cd6425b361afd4c1 /src/util.h | |
| parent | Remove print() from core functions (diff) | |
| download | discoin-9b6d4c5cdc1ad7b12b8b7ba05125dad9ba2d396e.tar.xz discoin-9b6d4c5cdc1ad7b12b8b7ba05125dad9ba2d396e.zip | |
Move strprintf define to tinyformat.h
This avoids a dependency on util.h if just tinyformat is needed.
Diffstat (limited to 'src/util.h')
| -rw-r--r-- | src/util.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h index db2005337..1fb42a7b7 100644 --- a/src/util.h +++ b/src/util.h @@ -108,7 +108,6 @@ bool LogAcceptCategory(const char* category); /* Send a string to the log output */ int LogPrintStr(const std::string &str); -#define strprintf tfm::format #define LogPrintf(...) LogPrint(NULL, __VA_ARGS__) /* When we switch to C++11, this can be switched to variadic templates instead |