Add fmt::join to format ranges (#466)

This commit is contained in:
Victor Zverovich
2018-01-27 16:04:45 -08:00
parent 87eab90ea8
commit a980d3b46b
3 changed files with 83 additions and 1 deletions

View File

@@ -26,6 +26,11 @@
#ifdef __GNUC__
# define FMT_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
# if __cplusplus >= 201103L || defined __GXX_EXPERIMENTAL_CXX0X__
# define FMT_HAS_GXX_CXX11 1
# endif
# else
# define FMT_HAS_GXX_CXX11 0
#endif
#ifdef _MSC_VER