Skip to content
Snippets Groups Projects
Commit 09b4000c authored by Jonathan Wakely's avatar Jonathan Wakely Committed by Jonathan Wakely
Browse files

Fix std::midpoint(T*, T*) for reversed arguments

	* include/std/numeric (midpoint(T*, T*)): Fix incorrect result.
	* testsuite/26_numerics/midpoint/pointer.cc: Change "compile" test
	to "run".

From-SVN: r271606
parent e8daba7e
No related branches found
No related tags found
No related merge requests found
2019-05-24 Jonathan Wakely <jwakely@redhat.com> 2019-05-24 Jonathan Wakely <jwakely@redhat.com>
* include/std/numeric (midpoint(T*, T*)): Fix incorrect result.
* testsuite/26_numerics/midpoint/pointer.cc: Change "compile" test
to "run".
* testsuite/20_util/shared_ptr/cons/alias-rval.cc: Fix test. * testsuite/20_util/shared_ptr/cons/alias-rval.cc: Fix test.
* testsuite/20_util/shared_ptr/cons/alias.cc: Remove unused function. * testsuite/20_util/shared_ptr/cons/alias.cc: Remove unused function.
......
...@@ -195,7 +195,7 @@ template<typename _Tp> ...@@ -195,7 +195,7 @@ template<typename _Tp>
enable_if_t<__and_v<is_object<_Tp>, bool_constant<sizeof(_Tp) != 0>>, _Tp*> enable_if_t<__and_v<is_object<_Tp>, bool_constant<sizeof(_Tp) != 0>>, _Tp*>
midpoint(_Tp* __a, _Tp* __b) noexcept midpoint(_Tp* __a, _Tp* __b) noexcept
{ {
return __a > __b ? __b + (__a - __b) / 2 : __a + (__b - __a) / 2; return __a + (__b - __a) / 2;
} }
#endif // C++20 #endif // C++20
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
// { dg-options "-std=gnu++2a" } // { dg-options "-std=gnu++2a" }
// { dg-do compile { target c++2a } } // { dg-do run { target c++2a } }
#include <numeric> #include <numeric>
#include <climits> #include <climits>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment