<div dir="ltr">@Eric,<div><br></div><div>Could you elaborate a bit what it means to move the SFINAE into the template parameter list? Does it mean the enable_if conversion check could be moved to the template parameter list and remove the default __nat parameter? Does that have any performance implication? </div><div><br></div><div>I'm really interested to know as I'm writing my own version of shared_ptr without atomics. </div><div>Thanks!</div><div><br></div><div>Zeyang</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jun 6, 2018 at 7:27 AM, Howard Hinnant <span dir="ltr"><<a href="mailto:howard.hinnant@gmail.com" target="_blank">howard.hinnant@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">That sounds right to me.<br>
<span class="HOEnZb"><font color="#888888"><br>
Howard<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
On Jun 5, 2018, at 4:07 PM, Erik Pilkington <<a href="mailto:erik.pilkington@gmail.com">erik.pilkington@gmail.com</a>> wrote:<br>
> <br>
> Looks like the initial purpose was to implement a poor man's explicit operator bool that returned a pointer to member, but it was removed in r151088.<br>
> <br>
> <br>
> On 2018-06-05 3:57 PM, Eric Fiselier via cfe-dev wrote:<br>
>> I'm not sure what the purpose is. I agree it doesn't seem to have any effect, and the git blame comes back to the initial commit for libc++.<br>
>> Changing the layout of `__nat` now would be an ABI break; so that's out of the question. But I have some upcoming patches that are going<br>
>> to remove most usages of it.<br>
>> <br>
>> @Howard, do you recall what the purpose of this was? Something to do with initializing empty structs maybe?<br>
>> <br>
>> /Eric<br>
>> <br>
>> On Tue, Jun 5, 2018 at 2:11 AM, Li, Zeyang via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a>> wrote:<br>
>> I was looking through clang's c++ standard library, and found this class in the shared_ptr class.<br>
>> <br>
>> class shared_ptr<br>
>> ...<br>
>> private:<br>
>>         struct __nat {int __for_bool_;};<br>
>> ...<br>
>> };<br>
>> <br>
>> and I understand that this class is used to detect whether type conversion is possible at compile time, but its member __for_bool_ is never used anywhere in the class or the weak_ptr counterpart. So my question is, what is the point of __for_bool_, why not simply use an empty class for the same purpose?<br>
>> <br>
>> I'm sure the standard library authors definitely knows better than me. Please help.<br>
>> <br>
>> Thanks,<br>
>> Zeyang<br>
>> <br>
>> <br>
>> ______________________________<wbr>_________________<br>
>> cfe-dev mailing list<br>
>> <a href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a><br>
>> <a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/cfe-dev</a><br>
>> <br>
>> <br>
>> <br>
>> <br>
>> ______________________________<wbr>_________________<br>
>> cfe-dev mailing list<br>
>> <br>
>> <a href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a><br>
>> <a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/cfe-dev</a><br>
> <br>
<br>
</div></div></blockquote></div><br></div>