Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(660)

Unified Diff: gcc/gcc/testsuite/g++.dg/ext/is_pod.C

Issue 3050029: [gcc] GCC 4.5.0=>4.5.1 (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gcc/gcc/testsuite/g++.dg/ext/has_nothrow_assign.C ('k') | gcc/gcc/testsuite/g++.dg/ext/label1.C » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/testsuite/g++.dg/ext/is_pod.C
diff --git a/gcc/gcc/testsuite/g++.dg/ext/is_pod.C b/gcc/gcc/testsuite/g++.dg/ext/is_pod.C
index 5c1f0cd3bcd289ea1050b3eaad4f5c10cae37f5c..570d23565f13f28438fc8c02a9c0edc1302912be 100644
--- a/gcc/gcc/testsuite/g++.dg/ext/is_pod.C
+++ b/gcc/gcc/testsuite/g++.dg/ext/is_pod.C
@@ -1,3 +1,4 @@
+// { dg-options "-std=c++0x" }
// { dg-do "run" }
#include <cassert>
@@ -68,8 +69,8 @@ int main()
assert (PTEST (A));
assert (PTEST (A[]));
assert (NTEST (B));
- assert (NTEST (C));
- assert (NTEST (C[]));
+ assert (PTEST (C));
+ assert (PTEST (C[]));
return 0;
}
« no previous file with comments | « gcc/gcc/testsuite/g++.dg/ext/has_nothrow_assign.C ('k') | gcc/gcc/testsuite/g++.dg/ext/label1.C » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698