Whitespace.
[oota-llvm.git] / include / llvm / Support / FileSystem.h
index a41bec921e0a4a0826a3abcb13d0b6c2e932a7d1..2296c6d6a1e19ab8c443db728e70d5c64779e4b1 100644 (file)
@@ -97,19 +97,19 @@ enum perms {
 // Helper functions so that you can use & and | to manipulate perms bits:
 inline perms operator|(perms l , perms r) {
   return static_cast<perms>(
-             static_cast<unsigned short>(l) | static_cast<unsigned short>(r)); 
+             static_cast<unsigned short>(l) | static_cast<unsigned short>(r));
 }
 inline perms operator&(perms l , perms r) {
   return static_cast<perms>(
-             static_cast<unsigned short>(l) & static_cast<unsigned short>(r)); 
+             static_cast<unsigned short>(l) & static_cast<unsigned short>(r));
 }
 inline perms &operator|=(perms &l, perms r) {
-  l = l | r; 
-  return l; 
+  l = l | r;
+  return l;
 }
 inline perms &operator&=(perms &l, perms r) {
-  l = l & r; 
-  return l; 
+  l = l & r;
+  return l;
 }
 inline perms operator~(perms x) {
   return static_cast<perms>(~static_cast<unsigned short>(x));