Remove trailing whitespace
[oota-llvm.git] / include / llvm / Support / FileUtilities.h
index f563d1ac449a7ed4ab91eb0283bf68c1e5ecc1ec..6712c325763a95f52adbab44219957497b9c803d 100644 (file)
@@ -1,10 +1,10 @@
 //===- llvm/Support/FileUtilities.h - File System Utilities -----*- C++ -*-===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
 // This file was developed by the LLVM research group and is distributed under
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This file defines a family of utility functions which are useful for doing
@@ -41,7 +41,7 @@ namespace llvm {
   public:
     FileRemover(const sys::Path &filename, bool deleteIt = true)
       : Filename(filename), DeleteIt(deleteIt) {}
-    
+
     ~FileRemover() {
       if (DeleteIt)
         try {