Mercurial > hg > qm-dsp
comparison dsp/wavelet/Wavelet.cpp @ 414:7e8d1f26b098
Fix compiler warnings with -Wall -Wextra
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Mon, 28 Sep 2015 12:33:17 +0100 |
parents | d5014ab8b0e5 |
children | 214b31ec7e1a |
comparison
equal
deleted
inserted
replaced
413:ec7318974497 | 414:7e8d1f26b098 |
---|---|
1841 hpd.push_back(0.00000000000000); | 1841 hpd.push_back(0.00000000000000); |
1842 flength = 102; | 1842 flength = 102; |
1843 break; | 1843 break; |
1844 } | 1844 } |
1845 | 1845 |
1846 assert(flength == lpd.size()); | 1846 assert(flength == int(lpd.size())); |
1847 assert(flength == hpd.size()); | 1847 assert(flength == int(hpd.size())); |
1848 } | 1848 } |
1849 | 1849 |