aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely.gcc@gmail.com>2011-05-28 17:13:48 +0000
committerJonathan Wakely <redi@gcc.gnu.org>2011-05-28 18:13:48 +0100
commit709544ca84adf917c6595f5621e19bf880708ab0 (patch)
tree782dc69f61648a5d02c1524944e2877460915bd0
parent45ba8f9f8f6806d4598b41fff8826ecb63a67092 (diff)
downloadgcc-709544ca84adf917c6595f5621e19bf880708ab0.zip
gcc-709544ca84adf917c6595f5621e19bf880708ab0.tar.gz
gcc-709544ca84adf917c6595f5621e19bf880708ab0.tar.bz2
pointer_to.cc: New.
2011-05-28 Jonathan Wakely <jwakely.gcc@gmail.com> * testsuite/20_util/pointer_traits/pointer_to.cc: New. From-SVN: r174381
-rw-r--r--libstdc++-v3/ChangeLog4
-rw-r--r--libstdc++-v3/testsuite/20_util/pointer_traits/pointer_to.cc50
2 files changed, 54 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 85b55b5..6d6d501 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,5 +1,9 @@
2011-05-28 Jonathan Wakely <jwakely.gcc@gmail.com>
+ * testsuite/20_util/pointer_traits/pointer_to.cc: New.
+
+2011-05-28 Jonathan Wakely <jwakely.gcc@gmail.com>
+
* include/Makefile.am: Add new ptr_traits.h header.
* include/Makefile.in: Regenerate.
* include/bits/ptr_traits.h (pointer_traits): New.
diff --git a/libstdc++-v3/testsuite/20_util/pointer_traits/pointer_to.cc b/libstdc++-v3/testsuite/20_util/pointer_traits/pointer_to.cc
new file mode 100644
index 0000000..557e384
--- /dev/null
+++ b/libstdc++-v3/testsuite/20_util/pointer_traits/pointer_to.cc
@@ -0,0 +1,50 @@
+// { dg-options "-std=gnu++0x" }
+
+// Copyright (C) 2011 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
+// <http://www.gnu.org/licenses/>.
+
+
+#include <memory>
+#include <testsuite_hooks.h>
+
+struct Ptr
+{
+ typedef bool element_type;
+
+ static bool* pointer_to(bool& b) { return 0; }
+};
+
+void test01()
+{
+ bool test = true;
+
+ VERIFY( std::pointer_traits<Ptr>::pointer_to(test) == 0 );
+}
+
+void test02()
+{
+ bool test = true;
+
+ VERIFY( std::pointer_traits<bool*>::pointer_to(test) == &test );
+}
+
+int main()
+{
+ test01();
+ test02();
+ return 0;
+}