diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-25 16:22:08 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-25 16:22:08 +0100 |
| commit | e520f1009eaa552c7b3931ced85c0f19d8aff554 (patch) | |
| tree | bf992eab88f0691e5bc336895656ff91cb5f233e /src/key.cc | |
| parent | 8eb096bc6fed65dcfc5f1440f3141408004d10fb (diff) | |
No-op: whitespace.
Diffstat (limited to 'src/key.cc')
| -rw-r--r-- | src/key.cc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -68,7 +68,7 @@ Key::operator= (Key const & other) if (this == &other) { return *this; } - + memcpy (_value, other._value, ASDCP::KeyLen); return *this; } @@ -77,7 +77,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]); } |
