diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-01-07 11:30:04 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-01-07 11:30:04 +0100 |
commit | 95f556cf0797ab4c23f431e5c8c5accfa7f4c30b (patch) | |
tree | f3958bd5b3d6a686ee1a04d3b23f2f0ba6d566de /src/TimestampDecoder.h | |
parent | 9b0203901bc83a07c4ce281f7d0c2e7f825f77a5 (diff) | |
download | dabmod-95f556cf0797ab4c23f431e5c8c5accfa7f4c30b.tar.gz dabmod-95f556cf0797ab4c23f431e5c8c5accfa7f4c30b.tar.bz2 dabmod-95f556cf0797ab4c23f431e5c8c5accfa7f4c30b.zip |
Fix a few minor mistakes
Diffstat (limited to 'src/TimestampDecoder.h')
-rw-r--r-- | src/TimestampDecoder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/TimestampDecoder.h b/src/TimestampDecoder.h index 943b241..db8f816 100644 --- a/src/TimestampDecoder.h +++ b/src/TimestampDecoder.h @@ -48,7 +48,7 @@ struct frame_timestamp frame_timestamp() = default; frame_timestamp(const frame_timestamp& other) = default; - frame_timestamp operator=(const frame_timestamp &rhs) + frame_timestamp& operator=(const frame_timestamp &rhs) { if (this != &rhs) { this->timestamp_sec = rhs.timestamp_sec; |