[libcxx-commits] [PATCH] D57351: [libc++] Explicitly initialize std::nothrow

Roman Lebedev via libcxx-commits libcxx-commits at lists.llvm.org
Wed Jan 30 11:11:16 PST 2019


Does not seem to have been reviewed; and again, no lists subscribed.

On Wed, Jan 30, 2019 at 10:09 PM Tom Anderson via Phabricator via
libcxx-commits <libcxx-commits at lists.llvm.org> wrote:
>
> This revision was not accepted when it landed; it landed in state "Needs Review".
> This revision was automatically updated to reflect the committed changes.
> Closed by commit rCXX352648: [libc++] Explicitly initialize std::nothrow (authored by thomasanderson, committed by ).
> Herald added subscribers: libcxx-commits, ldionne.
>
> Repository:
>   rCXX libc++
>
> CHANGES SINCE LAST ACTION
>   https://reviews.llvm.org/D57351/new/
>
> https://reviews.llvm.org/D57351
>
> Files:
>   src/new.cpp
>
>
> Index: src/new.cpp
> ===================================================================
> --- src/new.cpp
> +++ src/new.cpp
> @@ -34,7 +34,7 @@
>  {
>
>  #ifndef __GLIBCXX__
> -const nothrow_t nothrow = {};
> +const nothrow_t nothrow{};
>  #endif
>
>  #ifndef LIBSTDCXX
>
>
> _______________________________________________
> libcxx-commits mailing list
> libcxx-commits at lists.llvm.org
> https://lists.llvm.org/cgi-bin/mailman/listinfo/libcxx-commits


More information about the libcxx-commits mailing list