summaryrefslogtreecommitdiff
path: root/voice_engine/shared_data.cc
diff options
context:
space:
mode:
Diffstat (limited to 'voice_engine/shared_data.cc')
-rw-r--r--voice_engine/shared_data.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/voice_engine/shared_data.cc b/voice_engine/shared_data.cc
index 1393eb33..2f0b04a4 100644
--- a/voice_engine/shared_data.cc
+++ b/voice_engine/shared_data.cc
@@ -104,16 +104,16 @@ uint16_t SharedData::NumOfSendingChannels()
return nChannelsSending;
}
-void SharedData::SetLastError(const int32_t error) const {
+void SharedData::SetLastError(int32_t error) const {
_engineStatistics.SetLastError(error);
}
-void SharedData::SetLastError(const int32_t error,
- const TraceLevel level) const {
+void SharedData::SetLastError(int32_t error,
+ TraceLevel level) const {
_engineStatistics.SetLastError(error, level);
}
-void SharedData::SetLastError(const int32_t error, const TraceLevel level,
+void SharedData::SetLastError(int32_t error, TraceLevel level,
const char* msg) const {
_engineStatistics.SetLastError(error, level, msg);
}