Eliminate tabs and trailing spaces


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21479 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/C++Frontend/2003-09-22-CompositeExprValue.cpp b/test/C++Frontend/2003-09-22-CompositeExprValue.cpp
index b1373ba..a8208ad 100644
--- a/test/C++Frontend/2003-09-22-CompositeExprValue.cpp
+++ b/test/C++Frontend/2003-09-22-CompositeExprValue.cpp
@@ -2,10 +2,10 @@
 
 struct duration {
  duration operator/=(int c) {
-	return *this;
+  return *this;
   }
 };
 
 void a000090() {
-	duration() /= 1;
+  duration() /= 1;
 }