coding cleanup
parent
1e5e3f130a
commit
4057d38e96
|
|
@ -4,11 +4,6 @@
|
|||
set(CMAKE_CXX_STANDARD 20)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
|
||||
if (WINDOWS)
|
||||
set(CMAKE_GENERATOR_TOOLSET "CLangCL")
|
||||
endif (WINDOWS)
|
||||
|
||||
include(00-Common)
|
||||
include(Linking)
|
||||
include(WebRTC)
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
namespace llwebrtc
|
||||
{
|
||||
|
||||
LLAudioDeviceObserver::LLAudioDeviceObserver() : mMicrophoneEnergy(0.0), mSumVector {0} {}
|
||||
LLAudioDeviceObserver::LLAudioDeviceObserver() : mSumVector {0}, mMicrophoneEnergy(0.0) {}
|
||||
|
||||
float LLAudioDeviceObserver::getMicrophoneEnergy() { return mMicrophoneEnergy; }
|
||||
|
||||
|
|
|
|||
|
|
@ -117,7 +117,7 @@ class LLWebRTCImpl : public LLWebRTCDeviceInterface, public webrtc::AudioDeviceS
|
|||
{
|
||||
public:
|
||||
LLWebRTCImpl() :
|
||||
mPeerCustomProcessor(nullptr), mMute(true)
|
||||
mMute(true), mPeerCustomProcessor(nullptr)
|
||||
{
|
||||
}
|
||||
~LLWebRTCImpl() {}
|
||||
|
|
|
|||
Loading…
Reference in New Issue