From: Glen Joseph Fernandes Date: Thu, 30 Nov 2017 15:07:21 +0000 (+0000) Subject: Move assertion from to_address to __to_address X-Git-Tag: upstream/12.2.0~35154 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6b590c7a64873d0be0839c661f54276fbbbfded2;p=platform%2Fupstream%2Fgcc.git Move assertion from to_address to __to_address 2017-11-30 Glen Joseph Fernandes * include/bits/ptr_traits.h (__to_address, to_address): Move static assertion. * testsuite/20_util/to_address/1_neg.cc: New test. From-SVN: r255277 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index a79a284..6c7c75f9 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2017-11-30 Glen Joseph Fernandes + + * include/bits/ptr_traits.h (__to_address, to_address): Move static + assertion. + * testsuite/20_util/to_address/1_neg.cc: New test. + 2017-11-30 Jonathan Wakely PR libstdc++/83226 diff --git a/libstdc++-v3/include/bits/ptr_traits.h b/libstdc++-v3/include/bits/ptr_traits.h index 67cc7e9..11a0deb 100644 --- a/libstdc++-v3/include/bits/ptr_traits.h +++ b/libstdc++-v3/include/bits/ptr_traits.h @@ -149,7 +149,10 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION template constexpr _Tp* __to_address(_Tp* __ptr) noexcept - { return __ptr; } + { + static_assert(!std::is_function<_Tp>::value, "not a function pointer"); + return __ptr; + } #if __cplusplus <= 201703L template @@ -177,10 +180,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION template constexpr _Tp* to_address(_Tp* __ptr) noexcept - { - static_assert(!std::is_function_v<_Tp>, "not a pointer to function"); - return __ptr; - } + { return std::__to_address(__ptr); } /** * @brief Obtain address referenced by a pointer to an object diff --git a/libstdc++-v3/testsuite/20_util/to_address/1_neg.cc b/libstdc++-v3/testsuite/20_util/to_address/1_neg.cc new file mode 100644 index 0000000..c80013a --- /dev/null +++ b/libstdc++-v3/testsuite/20_util/to_address/1_neg.cc @@ -0,0 +1,36 @@ +// Copyright (C) 2017 Free Software Foundation, Inc. +// +// This file is part of the GNU ISO C++ Library. This library is free +// software; you can redistribute it and/or modify it under the +// terms of the GNU General Public License as published by the +// Free Software Foundation; either version 3, or (at your option) +// any later version. + +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License along +// with this library; see the file COPYING3. If not see +// . + +// { dg-options "-std=gnu++2a" } +// { dg-do compile { target c++2a } } +// { dg-error "not a function pointer" "" { target *-*-* } 153 } + +#include + +struct P +{ + using element_type = void(); + + element_type* operator->() const noexcept + { return nullptr; } +}; + +void test01() +{ + P p; + std::to_address(p); // { dg-error "required from here" } +}