diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-01-07 11:32:57 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-01-07 11:32:57 +0100 |
commit | 72f6740ebb93dc940c3894658824ba6142c15bfa (patch) | |
tree | 922e5a41dc16c1eb2db501d6eaca809fd2d15d9f /src/TimestampDecoder.h | |
parent | 1e76247e059021ea52309ebd258b6eed033d6aee (diff) | |
parent | 95f556cf0797ab4c23f431e5c8c5accfa7f4c30b (diff) | |
download | dabmod-72f6740ebb93dc940c3894658824ba6142c15bfa.tar.gz dabmod-72f6740ebb93dc940c3894658824ba6142c15bfa.tar.bz2 dabmod-72f6740ebb93dc940c3894658824ba6142c15bfa.zip |
Merge branch 'next' into outputRefactoring
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 000156d..cffba2f 100644 --- a/src/TimestampDecoder.h +++ b/src/TimestampDecoder.h @@ -49,7 +49,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; |