No-op: whitespace.
[libdcp.git] / src / key.cc
index 43e59dfc6de756a078731c5cf87687d8bcb614ea..46b09efbb99ab50471e16af8d022dadc5cf9458e 100644 (file)
@@ -72,7 +72,7 @@ Key::operator= (Key const & other)
        if (this == &other) {
                return *this;
        }
-       
+
        memcpy (_value, other._value, ASDCP::KeyLen);
        return *this;
 }
@@ -81,7 +81,7 @@ string
 Key::hex () const
 {
        stringstream g;
-       
+
        for (unsigned int i = 0; i < ASDCP::KeyLen; ++i) {
                g << setw(2) << setfill('0') << std::hex << static_cast<int> (_value[i]);
        }