]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/tr1/7_regular_expressions/basic_regex/ctors/wchar_t/default.cc
Remove trailing whitespace from libstdc++-v3 files
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / tr1 / 7_regular_expressions / basic_regex / ctors / wchar_t / default.cc
index e0207f01f4ade0cc892a8381235af398ff15d2fd..f59497ed58f09016c5bea6159cbc5d7b9a340c06 100644 (file)
 #include <tr1/regex>
 #include <testsuite_hooks.h>
 
-// Tests default constructor of the basic_regex class.  
+// Tests default constructor of the basic_regex class.
 void test01()
 {
   typedef std::tr1::basic_regex<wchar_t> test_type;
 
   // default constructor
   test_type re;
-  
+
   // Check for required typedefs
   typedef test_type::value_type  value_type;
   typedef test_type::flag_type   flag_type;
@@ -40,7 +40,7 @@ void test01()
 
 int
 main()
-{ 
+{
   test01();
   return 0;
 }