- 14 Mar, 2020 4 commits
-
-
Victor Zverovich authored
-
Victor Zverovich authored
-
Victor Zverovich authored
-
Victor Zverovich authored
-
- 13 Mar, 2020 1 commit
-
-
Dair Grant authored
FMT_DEPRECATED is now defined as FMT_HAS_CPP14_ATTRIBUTE(deprecated), as this attribute was introduced in C++14. FMT_FALLTHROUGH is now defined as FMT_HAS_CPP17_ATTRIBUTE(fallthrough), as this attribute was introduced in C++17. FMT_MAYBE_UNUSED is defined as FMT_HAS_CPP17_ATTRIBUTE(maybe_unused), as this attribute was introduced in C++17. FMT_MAYBE_UNUSED has been applied to fix a couple of -Wunused-member-function warnings from clang.
-
- 12 Mar, 2020 1 commit
-
-
Victor Zverovich authored
-
- 11 Mar, 2020 2 commits
-
-
Victor Zverovich authored
-
Victor Zverovich authored
-
- 09 Mar, 2020 3 commits
-
-
Victor Zverovich authored
-
Pramod Kumbhar authored
* Workaround broken [[deprecated]] in PGI compiler - similar to Intel and NVCC, add workaround for PGI compiler
-
Laurent Stacul authored
-
- 07 Mar, 2020 3 commits
-
-
Victor Zverovich authored
-
Victor Zverovich authored
-
Victor Zverovich authored
-
- 06 Mar, 2020 2 commits
-
-
Victor Zverovich authored
-
Dair Grant authored
FMT_STRING_IMPL has an internal helper named FMT_STRING, however FMT_STRING is also the name of the macro that invokes FMT_STRING_IMPL. Renaming this helper avoids the appearance of a recursive macro.
-
- 05 Mar, 2020 3 commits
-
-
Victor Zverovich authored
-
Victor Zverovich authored
-
Victor Zverovich authored
-
- 04 Mar, 2020 3 commits
-
-
Victor Zverovich authored
-
Victor Zverovich authored
-
refnum authored
grisu_count_digits is only used by grisu_gen_digits, which assigns the unsigned result to a (signed) int. Although grisu_count_digits always returns a positive integer this keeps its return type in sync with the type its result is assigned to.
-
- 01 Mar, 2020 4 commits
-
-
Victor Zverovich authored
-
refnum authored
* Fix -Wsign-conversion in bigint::subtract_aligned. n is assigned a size_t, and only used for comparisons with j. j is assigned 0, compared to n (size_t), and passed to basic_memory_buffer::operator[] (size_t). * Fix -Wsign-conversion in bigint::assign. num_bigits is initialised to 0, is only ever incremented, and is passed to basic_memory_buffer::operator[] (size_t) and basic_memory_buffer::resize (size_t).
-
refnum authored
Previously format.h defined FMT_CLANG_VERSION after including core.h, however core.h tests FMT_CLANG_VERSION when it defines FMT_API.
-
refnum authored
When building with -Werror,-Wmissing-noreturn clang identifies that assert_fail could be declared with the 'noreturn' attribute.
-
- 27 Feb, 2020 1 commit
-
-
Victor Zverovich authored
-
- 26 Feb, 2020 1 commit
-
-
Victor Zverovich authored
-
- 24 Feb, 2020 1 commit
-
-
Victor Zverovich authored
-
- 23 Feb, 2020 1 commit
-
-
fghzxm authored
The current `FMT_FORMAT_AS` macro will make `formatter<Char *>::format` have the first argument type `const Char *&` which is incorrect an should be `Char *const &`. This pull request fixes that by changing the first argument type in the macro definition body from `const Type &` to `Type const &`.
-
- 21 Feb, 2020 1 commit
-
-
IkarusDeveloper authored
* improved use of find *begin is supposed to be different from '{' when this find is used, so we can avoid checking it.
-
- 19 Feb, 2020 1 commit
-
-
dominicpoeschko authored
* add const begin and end overload to buffer since there is a const overload for data I think there should also be one for begin and end
-
- 15 Feb, 2020 1 commit
-
-
Victor Zverovich authored
-
- 14 Feb, 2020 1 commit
-
-
Victor Zverovich authored
-
- 10 Feb, 2020 1 commit
-
-
Victor Zverovich authored
-
- 08 Feb, 2020 2 commits
-
-
Victor Zverovich authored
-
Victor Zverovich authored
-
- 07 Feb, 2020 1 commit
-
-
Jordan Williams authored
-
- 06 Feb, 2020 1 commit
-
-
Victor Zverovich authored
-
- 01 Feb, 2020 1 commit
-
-
Victor Zverovich authored
-