1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-28 16:20:12 +01:00

Fixes for clang build with 64 bit unsigned long

This commit is contained in:
Paul Licameli
2017-03-30 10:46:44 -04:00
parent 82f909fe31
commit 1a86819b4b
2 changed files with 4 additions and 2 deletions

View File

@@ -255,7 +255,7 @@ Mixer::Mixer(const WaveTrackConstArray &inputTracks,
, mQueueMaxLen{ 65536 }
, mSampleQueue{ mNumInputTracks, mQueueMaxLen }
, mNumChannels{ static_cast<size_t>(numOutChannels) }
, mNumChannels{ numOutChannels }
, mGains{ mNumChannels }
, mMayThrow{ mayThrow }