diff mbox

[v3] libstdc++/47323

Message ID 4D33AAB2.9010609@oracle.com
State New
Headers show

Commit Message

Paolo Carlini Jan. 17, 2011, 2:34 a.m. UTC
Hi,

committed to mainline.

Paolo.

/////////////////////
2011-01-16  Paolo Carlini  <paolo.carlini@oracle.com>

	PR libstdc++/47323
	* testsuite/28_regex/08_basic_regex/requirements/constexpr_data.cc:
	Only test wregex when _GLIBCXX_USE_WCHAR_T is defined.
diff mbox

Patch

Index: testsuite/28_regex/08_basic_regex/requirements/constexpr_data.cc
===================================================================
--- testsuite/28_regex/08_basic_regex/requirements/constexpr_data.cc	(revision 168886)
+++ testsuite/28_regex/08_basic_regex/requirements/constexpr_data.cc	(working copy)
@@ -1,7 +1,7 @@ 
 // { dg-do compile }
 // { dg-options "-std=gnu++0x" }
 
-// Copyright (C) 2010 Free Software Foundation, Inc.
+// Copyright (C) 2010, 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
@@ -66,6 +66,8 @@ 
 {
   __gnu_test::constexpr_member_data test;
   test.operator()<std::regex>();
+#ifdef _GLIBCXX_USE_WCHAR_T
   test.operator()<std::wregex>();
+#endif
   return 0;
 }