diff options
author | Ulrich Müller <ulm@gentoo.org> | 2017-02-22 13:13:12 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2017-02-22 19:02:40 +0100 |
commit | fc3904f07b3bca43e2aa765e9d6b90fe6e120107 (patch) | |
tree | c1826fdf71337ce75b80323c277d7c6cc1726ca5 /net-im/openmittsu/files | |
parent | dev-perl/XML-LibXML: add ~arm64 for the other versions as well (diff) | |
download | gentoo-fc3904f07b3bca43e2aa765e9d6b90fe6e120107.tar.gz gentoo-fc3904f07b3bca43e2aa765e9d6b90fe6e120107.tar.bz2 gentoo-fc3904f07b3bca43e2aa765e9d6b90fe6e120107.zip |
net-im/openmittsu: Remove old.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'net-im/openmittsu/files')
-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);
- }
|