No-op: remove all trailing whitespace.
[dcpomatic.git] / src / lib / rect.h
index 963119b507b793998d370ffdf1acd786af1dbe9b..97b90abc5e28546ab74d6c0fa1115460289a0dbb 100644 (file)
 
 namespace dcpomatic
 {
-       
+
 /** @struct Rect
  *  @brief A rectangle.
  */
-template <class T>     
+template <class T>
 class Rect
 {
 public:
-       
+
        Rect ()
                : x (0)
                , y (0)
@@ -71,7 +71,7 @@ public:
        {
                T const tx = max (x, other.x);
                T const ty = max (y, other.y);
-       
+
                return Rect (
                        tx, ty,
                        min (x + width, other.x + other.width) - tx,