Thread overview
[phobos] [D-Programming-Language/phobos] e66981: Merge pull request #284 from 9rnsr/fix6208_on_inou...
Oct 13, 2011
David Simcha
Oct 13, 2011
kenji hara
October 12, 2011
  Branch: refs/heads/master
  Home:   https://github.com/D-Programming-Language/phobos

  Commit: e669812d26cc22b3a3f7116704ff75e603bd9ac1
      https://github.com/D-Programming-Language/phobos/commit/e669812d26cc22b3a3f7116704ff75e603bd9ac1
  Author: David Simcha <dsimcha at gmail.com>
  Date:   2011-10-12 (Wed, 12 Oct 2011)

  Changed paths:
    M std/array.d
  M std/exception.d
  M std/parallelism.d

  Log Message:
  -----------
  Merge pull request #284 from 9rnsr/fix6208_on_inout

Supplemental changes of dmd/pull/425 - Issue 6208 - Parameter storage classes are ignored in template function deducing.


October 12, 2011
http://d.puremagic.com/test-results/test_data.ghtml?dataid=107821

This one seems to have broken the Phobos build.  Why the heck is the shared overload of pointsTo getting called in the error message?

On 10/12/2011 10:42 PM, noreply at github.com wrote:
>    Branch: refs/heads/master
>    Home:   https://github.com/D-Programming-Language/phobos
>
>    Commit: e669812d26cc22b3a3f7116704ff75e603bd9ac1
>        https://github.com/D-Programming-Language/phobos/commit/e669812d26cc22b3a3f7116704ff75e603bd9ac1
>    Author: David Simcha<dsimcha at gmail.com>
>    Date:   2011-10-12 (Wed, 12 Oct 2011)
>
>    Changed paths:
>      M std/array.d
>    M std/exception.d
>    M std/parallelism.d
>
>    Log Message:
>    -----------
>    Merge pull request #284 from 9rnsr/fix6208_on_inout
>
> Supplemental changes of dmd/pull/425 - Issue 6208 - Parameter storage classes are ignored in template function deducing.
>
>
> _______________________________________________
> phobos mailing list
> phobos at puremagic.com
> http://lists.puremagic.com/mailman/listinfo/phobos
>

October 13, 2011
2011/10/13 David Simcha <dsimcha at gmail.com>:
> http://d.puremagic.com/test-results/test_data.ghtml?dataid=107821
>
> This one seems to have broken the Phobos build. ?Why the heck is the shared overload of pointsTo getting called in the error message?

Sorry, I had less explained. This patch requires the dmd change.

While deducing template function, the storage classes of the overloads
of pointsTo are ignored.
I revert this change for phobos building. After merging dmd/pull/425,
I'll revert 'revert'.

Kenji Hara