diff options
Diffstat (limited to 'net-im/openmittsu/files/openmittsu-0.9.2_p78-fmt.patch')
-rw-r--r-- | net-im/openmittsu/files/openmittsu-0.9.2_p78-fmt.patch | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/net-im/openmittsu/files/openmittsu-0.9.2_p78-fmt.patch b/net-im/openmittsu/files/openmittsu-0.9.2_p78-fmt.patch deleted file mode 100644 index 19b55701e83d..000000000000 --- a/net-im/openmittsu/files/openmittsu-0.9.2_p78-fmt.patch +++ /dev/null @@ -1,49 +0,0 @@ -https://bugs.gentoo.org/609366 -Backported from https://github.com/fmtlib/fmt.git: - -commit abbefd71666055daac9e14e78262620f9e845850 -Author: Victor Zverovich <victor.zverovich@gmail.com> -Date: Wed Oct 19 06:52:55 2016 -0700 - - CHAR_WIDTH -> CHAR_SIZE to avoid collision with ISO/IEC TS 18661-1:2014 macro - ---- openMittsu-0.9.2_p78-orig/3rdparty/spdlog/include/spdlog/details/format.h -+++ openMittsu-0.9.2_p78/3rdparty/spdlog/include/spdlog/details/format.h -@@ -2163,29 +2163,29 @@ - typedef typename BasicWriter<Char>::CharPtr CharPtr;
- Char fill = internal::CharTraits<Char>::cast(spec_.fill());
- CharPtr out = CharPtr();
-- const unsigned CHAR_WIDTH = 1;
-- if (spec_.width_ > CHAR_WIDTH)
-+ const unsigned CHAR_SIZE = 1;
-+ if (spec_.width_ > CHAR_SIZE)
- {
- out = writer_.grow_buffer(spec_.width_);
- if (spec_.align_ == ALIGN_RIGHT)
- {
-- std::uninitialized_fill_n(out, spec_.width_ - CHAR_WIDTH, fill);
-- out += spec_.width_ - CHAR_WIDTH;
-+ std::uninitialized_fill_n(out, spec_.width_ - CHAR_SIZE, fill);
-+ out += spec_.width_ - CHAR_SIZE;
- }
- else if (spec_.align_ == ALIGN_CENTER)
- {
- out = writer_.fill_padding(out, spec_.width_,
-- internal::check(CHAR_WIDTH), fill);
-+ internal::check(CHAR_SIZE), fill);
- }
- else
- {
-- std::uninitialized_fill_n(out + CHAR_WIDTH,
-- spec_.width_ - CHAR_WIDTH, fill);
-+ std::uninitialized_fill_n(out + CHAR_SIZE,
-+ spec_.width_ - CHAR_SIZE, fill);
- }
- }
- else
- {
-- out = writer_.grow_buffer(CHAR_WIDTH);
-+ out = writer_.grow_buffer(CHAR_SIZE);
- }
- *out = internal::CharTraits<Char>::cast(value);
- }
|