]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/tr1/6_containers/unordered_map/24064.cc
Remove trailing whitespace from libstdc++-v3 files
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / tr1 / 6_containers / unordered_map / 24064.cc
index fc3208c305e032580f46b05c6d4e06a1712e4a6d..7079996395e7cc96369bb9140fd86c0d0668465f 100644 (file)
@@ -32,14 +32,14 @@ void test01()
 
   __unordered_map<int, char, hash<int>, equal_to<int>,
     allocator<pair<const int, char> >, true> m;
+
   for (int i = 0; i < 1000; ++i)
     m[i] = '0' + i % 9;
-               
+
   for (int i = 0; i < 1000; ++i)
     VERIFY( ++m.find(i)->second == '1' + i % 9 );
 }
-  
+
 int main()
 {
   test01();