<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Wed, Nov 8, 2017 at 10:48 AM, René J.V. Bertin via cfe-dev <span dir="ltr"><<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi,<br>
<br>
I hope this is the right place to ask:<br>
<br>
What libc++ release version first had the C++14 new & delete operators (specifically, delete(void*, size_t))? I think they were introduced in svn rev. 229281 .<br>
<br>
I'm interested in particular how one can test for presence of these functions, preferably with an actual linking step (aka autoconf test).<br><br></blockquote><div>Rev 229281 was before we started updating _LIBCPP_VERSION to match the release.</div><div>An imperfect test would be checking _LIBCPP_VERSION and if it is greater than 1101, then it will have those calls.</div><div><br></div><div>This has two drawbacks:</div><div>* There will be versions of libc++ where _LIBCPP_VERSION == 1101 and the calls exist.</div><div>* There *may* be customized versions of libc++ where vendors have decided to not ship those calls. (I don't know of any, but ...).</div><div><br></div><div>-- Marshall</div><div><br></div></div><br></div></div>