]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/tr1/6_containers/tuple/element_access/get.cc
Remove trailing whitespace from libstdc++-v3 files
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / tr1 / 6_containers / tuple / element_access / get.cc
index 7c71f8e17f8d8b9215626d61dc81ca96fe2beb52..8f32f6f46988e5d79e8c76fe7183b382651552f2 100644 (file)
@@ -32,10 +32,10 @@ main()
   int j=1;
   const int k=2;
   tuple<int,int &,const int&> a(0,j,k);
-  const tuple<int,int &,const int&> b(1,j,k); 
+  const tuple<int,int &,const int&> b(1,j,k);
   VERIFY(get<0>(a)==0 && get<1>(a)==1 && get<2>(a)==2);
   get<0>(a)=3;
-  get<1>(a)=4;  
+  get<1>(a)=4;
   VERIFY(get<0>(a)==3 && get<1>(a)==4);
   VERIFY(j==4);
   get<1>(b)=5;