diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-01-15 15:45:39 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-01-15 15:45:39 +0100 |
commit | e05c1b5903709651aac348fd5144de3ccbbd77a3 (patch) | |
tree | 6d0069ea0ad46f2b6582954b38cb4e8f0e11faa3 /faad_decoder.h | |
parent | 78b7759ff40c691f09ccc6151de8fc127b361e20 (diff) | |
download | etisnoop-e05c1b5903709651aac348fd5144de3ccbbd77a3.tar.gz etisnoop-e05c1b5903709651aac348fd5144de3ccbbd77a3.tar.bz2 etisnoop-e05c1b5903709651aac348fd5144de3ccbbd77a3.zip |
Fix warnings, revert small typos
Diffstat (limited to 'faad_decoder.h')
-rw-r--r-- | faad_decoder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/faad_decoder.h b/faad_decoder.h index b84913c..470f905 100644 --- a/faad_decoder.h +++ b/faad_decoder.h @@ -41,12 +41,12 @@ class FaadHandle decoder = NeAACDecOpen(); } - FaadHandle(const FaadHandle& other) + FaadHandle(const FaadHandle&) { this->decoder = NeAACDecOpen(); } - FaadHandle& operator=(const FaadHandle& other) + FaadHandle& operator=(const FaadHandle&) { this->decoder = NeAACDecOpen(); return *this; |