diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-08-04 20:42:09 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-08-04 20:42:09 +0200 |
commit | 0c96ac35b3d6758a556959b37ee2316357e0ae0c (patch) | |
tree | 30265af24517fe331caf7a47fe76d343981c6e18 /src/MemlessPoly.cpp | |
parent | 0c31bc95ca1ca4ee420a6e2d82bad6b1e50177c6 (diff) | |
download | dabmod-0c96ac35b3d6758a556959b37ee2316357e0ae0c.tar.gz dabmod-0c96ac35b3d6758a556959b37ee2316357e0ae0c.tar.bz2 dabmod-0c96ac35b3d6758a556959b37ee2316357e0ae0c.zip |
Move MemlessPoly m_coefs to private
Diffstat (limited to 'src/MemlessPoly.cpp')
-rw-r--r-- | src/MemlessPoly.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/MemlessPoly.cpp b/src/MemlessPoly.cpp index b0b5ddd..71ceac3 100644 --- a/src/MemlessPoly.cpp +++ b/src/MemlessPoly.cpp @@ -56,7 +56,9 @@ static const std::array<complexf, 8> default_coefficients({{ MemlessPoly::MemlessPoly(const std::string& coefs_file) : PipelinedModCodec(), RemoteControllable("memlesspoly"), - m_coefs_file(coefs_file) + m_coefs(), + m_coefs_file(coefs_file), + m_coefs_mutex() { PDEBUG("MemlessPoly::MemlessPoly(%s) @ %p\n", coefs_file.c_str(), this); |