[phobos] [D-Programming-Language/phobos] 5e0ce3: Fix #13872

GitHub via phobos phobos at puremagic.com
Sat Feb 7 12:32:45 PST 2015


  Branch: refs/tags/auto-tester-testing
  Home:   https://github.com/D-Programming-Language/phobos
  Commit: 5e0ce3747d3f725c16403f668017895716e5823e
      https://github.com/D-Programming-Language/phobos/commit/5e0ce3747d3f725c16403f668017895716e5823e
  Author: Jakob Ovrum <jakobovrum at gmail.com>
  Date:   2015-01-30 (Fri, 30 Jan 2015)

  Changed paths:
    M std/container/package.d
    M std/container/util.d

  Log Message:
  -----------
  Fix #13872

std.container.make!(Array!T) now returns a reference
to an actual container, not a 'null reference' that
initializes itself upon use.


  Commit: 806361692978e538ed782287d796e58b2ed5b8df
      https://github.com/D-Programming-Language/phobos/commit/806361692978e538ed782287d796e58b2ed5b8df
  Author: sinkuu <sinkuupump at gmail.com>
  Date:   2015-02-04 (Wed, 04 Feb 2015)

  Changed paths:
    M std/format.d

  Log Message:
  -----------
  Issue 14059 - Formatted write with wrong formatting string


  Commit: 1cabeac6da6ce691a31bf4654179f222a0956137
      https://github.com/D-Programming-Language/phobos/commit/1cabeac6da6ce691a31bf4654179f222a0956137
  Author: e10s <electrolysis.jp at gmail.com>
  Date:   2015-02-04 (Wed, 04 Feb 2015)

  Changed paths:
    M std/bigint.d

  Log Message:
  -----------
  Fix Issue 14124 - BigInt %= int can return "-0"


  Commit: 23b17ca0829a86d6a116dd85dfae9bf76858daec
      https://github.com/D-Programming-Language/phobos/commit/23b17ca0829a86d6a116dd85dfae9bf76858daec
  Author: Ilya Yaroshenko <ilyayaroshenko at gmail.com>
  Date:   2015-02-05 (Thu, 05 Feb 2015)

  Changed paths:
    M std/math.d

  Log Message:
  -----------
  fix unittest

For future `double` and `float` versions of `log2`.


  Commit: 524efa6e7668bee96f7a4e1e7f41ea379a2a9201
      https://github.com/D-Programming-Language/phobos/commit/524efa6e7668bee96f7a4e1e7f41ea379a2a9201
  Author: Andrei Alexandrescu <andrei at erdani.com>
  Date:   2015-02-04 (Wed, 04 Feb 2015)

  Changed paths:
    M std/file.d

  Log Message:
  -----------
  Fix read() on posix


  Commit: e6b0b458ccd5cd6a5553fc32b0d7f63e3fc8fa4d
      https://github.com/D-Programming-Language/phobos/commit/e6b0b458ccd5cd6a5553fc32b0d7f63e3fc8fa4d
  Author: Jakob Ovrum <jakobovrum at gmail.com>
  Date:   2015-02-05 (Thu, 05 Feb 2015)

  Changed paths:
    M std/algorithm/searching.d

  Log Message:
  -----------
  Change foreach loop in std.algorithm.searching.find to a for-loop


  Commit: 9ef022d1fb04bd2c1240e1203466eb192daacb72
      https://github.com/D-Programming-Language/phobos/commit/9ef022d1fb04bd2c1240e1203466eb192daacb72
  Author: Andrei Alexandrescu <andrei at erdani.com>
  Date:   2015-02-05 (Thu, 05 Feb 2015)

  Changed paths:
    M std/algorithm/searching.d

  Log Message:
  -----------
  Merge pull request #2964 from JakobOvrum/find_foreach

Change foreach loop in std.algorithm.searching.find to a for-loop


  Commit: b94d7de35cc32df84560a82fcd55106d3120a208
      https://github.com/D-Programming-Language/phobos/commit/b94d7de35cc32df84560a82fcd55106d3120a208
  Author: Walter Bright <walter at walterbright.com>
  Date:   2015-02-05 (Thu, 05 Feb 2015)

  Changed paths:
    M std/file.d

  Log Message:
  -----------
  Merge pull request #2963 from andralex/trusted

Fix read() on posix


  Commit: 1d4a3415172ccf42e0d41bd596b81eb33a0815f8
      https://github.com/D-Programming-Language/phobos/commit/1d4a3415172ccf42e0d41bd596b81eb33a0815f8
  Author: Andrei Alexandrescu <andrei at erdani.com>
  Date:   2015-02-05 (Thu, 05 Feb 2015)

  Changed paths:
    M std/math.d

  Log Message:
  -----------
  Merge pull request #2961 from 9il/log2

fix unittest


  Commit: 4a0f81730482ceb278768936e8a7270eb07a2080
      https://github.com/D-Programming-Language/phobos/commit/4a0f81730482ceb278768936e8a7270eb07a2080
  Author: sinkuu <sinkuupump at gmail.com>
  Date:   2015-02-06 (Fri, 06 Feb 2015)

  Changed paths:
    M std/format.d

  Log Message:
  -----------
  Use enforceFmt


  Commit: 3299c63e7500e6eeb9f5f3c9f8f3ec501fde6064
      https://github.com/D-Programming-Language/phobos/commit/3299c63e7500e6eeb9f5f3c9f8f3ec501fde6064
  Author: JakobOvrum <JakobOvrum at users.noreply.github.com>
  Date:   2015-02-06 (Fri, 06 Feb 2015)

  Changed paths:
    M std/format.d

  Log Message:
  -----------
  Merge pull request #2958 from sinkuu/fix_14059_format

Issue 14059 - Formatted write with wrong formatting string


  Commit: 041db2d8fac2b1cf5169be7188ea537a01f27586
      https://github.com/D-Programming-Language/phobos/commit/041db2d8fac2b1cf5169be7188ea537a01f27586
  Author: Daniel Murphy <yebblies at gmail.com>
  Date:   2015-02-07 (Sat, 07 Feb 2015)

  Changed paths:
    M std/container/package.d
    M std/container/util.d

  Log Message:
  -----------
  Merge pull request #2804 from Panke/fix-13872

Fix #13872


  Commit: 6a8bcb32e9d3a7ba905479387577b8a2a278b774
      https://github.com/D-Programming-Language/phobos/commit/6a8bcb32e9d3a7ba905479387577b8a2a278b774
  Author: Jakob Ovrum <jakobovrum at gmail.com>
  Date:   2015-02-07 (Sat, 07 Feb 2015)

  Changed paths:
    M std/bigint.d
    M std/internal/math/biguintcore.d

  Log Message:
  -----------
  Add @nogc attribute to several BigInt accessor functions


  Commit: 677edcf220c887f00f9d3cd27600d7219862ed5a
      https://github.com/D-Programming-Language/phobos/commit/677edcf220c887f00f9d3cd27600d7219862ed5a
  Author: Andrei Alexandrescu <andrei at erdani.com>
  Date:   2015-02-07 (Sat, 07 Feb 2015)

  Changed paths:
    M std/bigint.d
    M std/internal/math/biguintcore.d

  Log Message:
  -----------
  Merge pull request #2965 from JakobOvrum/bigint_nogc

Add @nogc attribute to several BigInt accessor functions


  Commit: 62a1db045ede0df0e20063a3a8190555aa26c7fa
      https://github.com/D-Programming-Language/phobos/commit/62a1db045ede0df0e20063a3a8190555aa26c7fa
  Author: Ilya Yaroshenko <ilyayaroshenko at gmail.com>
  Date:   2015-02-07 (Sat, 07 Feb 2015)

  Changed paths:
    M std/math.d

  Log Message:
  -----------
  poly template

fix unittest

fix unittest

fix spaces


  Commit: 9f6e1c33be2001bb44cfcb53f78441b75eb1c718
      https://github.com/D-Programming-Language/phobos/commit/9f6e1c33be2001bb44cfcb53f78441b75eb1c718
  Author: Andrei Alexandrescu <andrei at erdani.com>
  Date:   2015-02-07 (Sat, 07 Feb 2015)

  Changed paths:
    M std/bigint.d

  Log Message:
  -----------
  Merge pull request #2959 from e10s/patch-7

Fix Issue 14124 - BigInt %= int can return "-0"


  Commit: f4a8f62aae86abcda363fcef6a6f07da9aa857d6
      https://github.com/D-Programming-Language/phobos/commit/f4a8f62aae86abcda363fcef6a6f07da9aa857d6
  Author: H. S. Teoh <hsteoh at quickfur.ath.cx>
  Date:   2015-02-07 (Sat, 07 Feb 2015)

  Changed paths:
    M std/math.d

  Log Message:
  -----------
  Merge pull request #2960 from 9il/poly

poly template


Compare: https://github.com/D-Programming-Language/phobos/compare/581f6d029aa4...f4a8f62aae86


More information about the phobos mailing list