]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/tr1/6_containers/unordered_set/insert/24061-set.cc
Remove trailing whitespace from libstdc++-v3 files
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / tr1 / 6_containers / unordered_set / insert / 24061-set.cc
index 9f61d31d4af2a894611c2770ef1e6e20aafe9bfc..1712268b0c5627d19e787917e17fbb0d67ec3333 100644 (file)
@@ -1,4 +1,4 @@
-// 2005-10-08  Paolo Carlini  <pcarlini@suse.de> 
+// 2005-10-08  Paolo Carlini  <pcarlini@suse.de>
 //
 // Copyright (C) 2005-2016 Free Software Foundation, Inc.
 //
 void test01()
 {
   bool test __attribute__((unused)) = true;
-  
+
   typedef std::tr1::unordered_set<std::string> Set;
   typedef Set::iterator       iterator;
   typedef Set::const_iterator const_iterator;
 
   Set s1;
-  
+
   iterator it1 = s1.insert(s1.begin(), "all the love in the world");
   VERIFY( s1.size() == 1 );
   VERIFY( *it1 == "all the love in the world" );
-  
+
   const_iterator cit1(it1);
   const_iterator cit2 = s1.insert(cit1, "you know what you are?");
   VERIFY( s1.size() == 2 );
@@ -49,7 +49,7 @@ void test01()
   VERIFY( it2 == it1 );
   VERIFY( *it2 == "all the love in the world" );
 }
-  
+
 int main()
 {
   test01();