summaryrefslogtreecommitdiff
path: root/voice_engine/channel_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'voice_engine/channel_manager.h')
-rw-r--r--voice_engine/channel_manager.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/voice_engine/channel_manager.h b/voice_engine/channel_manager.h
index defade1c..91247d6a 100644
--- a/voice_engine/channel_manager.h
+++ b/voice_engine/channel_manager.h
@@ -30,7 +30,7 @@ class ChannelManager: private ChannelManagerBase
public:
bool CreateChannel(int32_t& channelId);
- int32_t DestroyChannel(const int32_t channelId);
+ int32_t DestroyChannel(int32_t channelId);
int32_t MaxNumOfChannels() const;
@@ -39,7 +39,7 @@ public:
void GetChannelIds(int32_t* channelsArray,
int32_t& numOfChannels) const;
- ChannelManager(const uint32_t instanceId);
+ ChannelManager(uint32_t instanceId);
~ChannelManager();
@@ -48,7 +48,7 @@ private:
ChannelManager& operator=(const ChannelManager&);
- Channel* GetChannel(const int32_t channelId) const;
+ Channel* GetChannel(int32_t channelId) const;
void GetChannels(MapWrapper& channels) const;