aboutsummaryrefslogtreecommitdiffstats
path: root/faad_decoder.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2016-01-15 15:45:39 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2016-01-15 15:45:39 +0100
commite05c1b5903709651aac348fd5144de3ccbbd77a3 (patch)
tree6d0069ea0ad46f2b6582954b38cb4e8f0e11faa3 /faad_decoder.h
parent78b7759ff40c691f09ccc6151de8fc127b361e20 (diff)
downloadetisnoop-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.h4
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;