diff options
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; |