Re: What's the deal with _postblitRecurse?

2018-03-02 Thread Jonathan M Davis via Digitalmars-d
On Friday, March 02, 2018 14:23:14 Andrei Alexandrescu via Digitalmars-d wrote: > On 03/02/2018 01:50 PM, Jonathan M Davis wrote: > > On Friday, March 02, 2018 13:32:24 Andrei Alexandrescu via Digitalmars-d > > > > wrote: > >> object.d includes this function _postblitRecurse that's intentionally

Re: What's the deal with _postblitRecurse?

2018-03-02 Thread Steven Schveighoffer via Digitalmars-d
On 3/2/18 3:02 PM, Steven Schveighoffer wrote: It's easier than that. The git blame view in github shows it as this commit: https://github.com/dlang/druntime/commit/f98a02142767d2d14b574cd381670dbd53b90d36 If you look in the upper left, it shows "master (#1181)", where 1181 is the PR

Re: What's the deal with _postblitRecurse?

2018-03-02 Thread Steven Schveighoffer via Digitalmars-d
On 3/2/18 2:45 PM, H. S. Teoh wrote: On Fri, Mar 02, 2018 at 02:23:14PM -0500, Andrei Alexandrescu via Digitalmars-d wrote: [...] But I don't have a simple method to ascribe the blame to a specific PR. Is the only way to look at the date then look at the log? Thanks. -- Andrei This is how I

Re: What's the deal with _postblitRecurse?

2018-03-02 Thread H. S. Teoh via Digitalmars-d
On Fri, Mar 02, 2018 at 02:23:14PM -0500, Andrei Alexandrescu via Digitalmars-d wrote: [...] > But I don't have a simple method to ascribe the blame to a specific > PR. Is the only way to look at the date then look at the log? Thanks. > -- Andrei This is how I usually do it: 1) Find the hash of

Re: What's the deal with _postblitRecurse?

2018-03-02 Thread Andrei Alexandrescu via Digitalmars-d
On 03/02/2018 01:50 PM, Jonathan M Davis wrote: On Friday, March 02, 2018 13:32:24 Andrei Alexandrescu via Digitalmars-d wrote: object.d includes this function _postblitRecurse that's intentionally public but undocumented. As far as I can see only unittests are using it. What's the deal with

Re: What's the deal with _postblitRecurse?

2018-03-02 Thread Jonathan M Davis via Digitalmars-d
On Friday, March 02, 2018 13:32:24 Andrei Alexandrescu via Digitalmars-d wrote: > object.d includes this function _postblitRecurse that's intentionally > public but undocumented. As far as I can see only unittests are using > it. What's the deal with it? Thanks! -- Andrei It looks like it was

What's the deal with _postblitRecurse?

2018-03-02 Thread Andrei Alexandrescu via Digitalmars-d
object.d includes this function _postblitRecurse that's intentionally public but undocumented. As far as I can see only unittests are using it. What's the deal with it? Thanks! -- Andrei