diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-06-13 09:04:43 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-06-18 15:48:16 -0400 |
commit | f88959ba7c30d82d7fd70a399326a4347cc36911 (patch) | |
tree | d2367e49a61d2cfda689ec8749a66252cd6a2971 | |
parent | 0023c978905b462e614872a7674d4225e1cf7007 (diff) |
tinyformat: Add doc to Bitcoin Core specific strprintf
Github-Pull: #16205
Rebased-From: fa72a64b90dc07a80b1ca6127eb50d8244dedc3b
-rw-r--r-- | src/tinyformat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tinyformat.h b/src/tinyformat.h index 14b7cd3026..182f518a0b 100644 --- a/src/tinyformat.h +++ b/src/tinyformat.h @@ -1063,6 +1063,7 @@ std::string format(const std::string &fmt, const Args&... args) } // namespace tinyformat +/** Format arguments and return the string or write to given std::ostream (see tinyformat::format doc for details) */ #define strprintf tfm::format #endif // TINYFORMAT_H_INCLUDED |