- 10 Feb, 2019 1 commit
-
-
Victor Zverovich authored
-
- 09 Feb, 2019 1 commit
-
-
Victor Zverovich authored
-
- 07 Feb, 2019 1 commit
-
-
Daniela Engert authored
Since C++17, using template specialization 'std::allocator<void>' in any shape or form (even just mentioning it) is deprecated! A simple workaround is replacing 'void' by another (preferably empty) type, e.g. 'fmt::monostate'. Found by Clang 9 in Visual Studio.
-
- 06 Feb, 2019 4 commits
-
-
morinmorin authored
-
morinmorin authored
-
Victor Zverovich authored
-
Victor Zverovich authored
-
- 05 Feb, 2019 1 commit
-
-
Victor Zverovich authored
-
- 04 Feb, 2019 4 commits
-
-
Daniela Engert authored
Name hiding. Signed-off-by:
Daniela Engert <dani@ngrt.de>
-
Daniela Engert authored
C++17 deprecated 'std::result_of' in favour of 'std::invoke_result' and will ban it outright in C++20. Therefore - implement 'internal::result_of' in terms of 'std::invoke_result' when compiling C++17 mode. - implement 'internal::result_of' in terms of 'std::result_of' when compiling in modes C++11 or C++14. Signed-off-by:
Daniela Engert <dani@ngrt.de>
-
Victor Zverovich authored
-
Victor Zverovich authored
-
- 03 Feb, 2019 2 commits
-
-
Elias Kosunen authored
-
Victor Zverovich authored
-
- 02 Feb, 2019 5 commits
-
-
Victor Zverovich authored
-
Victor Zverovich authored
-
Elias Kosunen authored
-
Elias Kosunen authored
-
Elias Kosunen authored
-
- 31 Jan, 2019 1 commit
-
-
Victor Zverovich authored
-
- 30 Jan, 2019 3 commits
-
-
Victor Zverovich authored
-
Victor Zverovich authored
-
Victor Zverovich authored
-
- 27 Jan, 2019 3 commits
-
-
Daniela Engert authored
Howard Hinnant's 'date' library recently gained these two new formatting specifiers. This implementation in {fmt} includes support for 'std::chrono::duration' specializations with floating-point representation types and user-definable precision. Signed-off-by:
Daniela Engert <dani@ngrt.de>
-
Victor Zverovich authored
-
Victor Zverovich authored
-
- 23 Jan, 2019 1 commit
-
-
Daniela Engert authored
The formatting syntax follows p1361r0, augmented by a precision field as proposed in #1004. Signed-off-by:
Daniela Engert <dani@ngrt.de>
-
- 21 Jan, 2019 2 commits
-
-
Victor Zverovich authored
-
Victor Zverovich authored
-
- 20 Jan, 2019 2 commits
-
-
Victor Zverovich authored
-
Victor Zverovich authored
-
- 19 Jan, 2019 1 commit
-
-
Victor Zverovich authored
-
- 16 Jan, 2019 1 commit
-
-
Victor Zverovich authored
-
- 13 Jan, 2019 5 commits
-
-
Daniela Engert authored
Mostly equivalent to 'sprintf(const S &format, const Args & ... args)' but generates at most 'n' characters through output iterator 'it'. The output type is the same as with 'format_to_n'. Signed-off-by:
Daniela Engert <dani@ngrt.de>
-
Daniela Engert authored
These problems are pointed out by clang-tidy and fail compilation on msvc at /W4 /WX. Signed-off-by:
Daniela Engert <dani@ngrt.de>
-
Victor Zverovich authored
This reverts commit 4a059914.
-
Victor Zverovich authored
-
Victor Zverovich authored
-
- 12 Jan, 2019 1 commit
-
-
stryku authored
Implementation of fmt::prepare() function and features around it.
-
- 09 Jan, 2019 1 commit
-
-
Victor Zverovich authored
-