mirror of
https://github.com/lubosz/overte.git
synced 2025-04-12 13:32:53 +02:00
fix warnings
This commit is contained in:
parent
609c4ab52e
commit
f013b9af2b
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ public:
|
|||
bool isStereo() const { return resultWithReadLock<bool>([&] { return _options.stereo; }); }
|
||||
bool isAmbisonic() const { return resultWithReadLock<bool>([&] { return _options.ambisonic; }); }
|
||||
|
||||
const AudioInjectorOptions& getOptions() const { return resultWithReadLock<AudioInjectorOptions>([&] { return _options; }); }
|
||||
AudioInjectorOptions getOptions() const { return resultWithReadLock<AudioInjectorOptions>([&] { return _options; }); }
|
||||
void setOptions(const AudioInjectorOptions& options);
|
||||
|
||||
bool stateHas(AudioInjectorState state) const ;
|
||||
|
|
Loading…
Reference in a new issue