2012-10-09 Benjamin Kosnik <bkoz@redhat.com>
authorbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 9 Oct 2012 16:21:27 +0000 (16:21 +0000)
committerbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 9 Oct 2012 16:21:27 +0000 (16:21 +0000)
* testsuite/20_util/specialized_algorithms/uninitialized_copy/808590.cc:
Fix constant value.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@192265 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/808590.cc

index 441f83d..1f5c8df 100644 (file)
@@ -1,3 +1,8 @@
+2012-10-09  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * testsuite/20_util/specialized_algorithms/uninitialized_copy/808590.cc:
+       Fix constant value.
+
 2012-10-09  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR libstdc++/54869
index 7ccd8da..c86f430 100644 (file)
@@ -27,7 +27,7 @@ struct c
   c(const c &r) : m(r.m) {}
 
   template<class T>
-    explicit c(T &o) : m((void*)0xdeadfbeef) { }
+    explicit c(T &o) : m((void*)0xdeadbeef) { }
 };
 
 int main()