Skip to content

Commit 9eaa0af

Browse files
committed
tinyformat: force USE_VARIADIC_TEMPLATES
Now that we started using c++11, force use of variadic templates. The autodetection may be wonky on some compilers, see discussion [here](bitcoin/bitcoin#7982 (comment)) and is unnecessary for us anyhow.
1 parent 559fbae commit 9eaa0af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tinyformat.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ namespace tfm = tinyformat;
113113

114114
// Define for C++11 variadic templates which make the code shorter & more
115115
// general. If you don't define this, C++11 support is autodetected below.
116-
// #define TINYFORMAT_USE_VARIADIC_TEMPLATES
116+
#define TINYFORMAT_USE_VARIADIC_TEMPLATES
117117

118118

119119
//------------------------------------------------------------------------------

0 commit comments

Comments
 (0)