AbstractLogger: Make IsStdReplicationEnabled const

This commit is contained in:
Ardakaniz
2016-10-16 18:20:05 +02:00
parent f309cee8d6
commit 64cec3fd01
5 changed files with 5 additions and 5 deletions

View File

@@ -65,7 +65,7 @@ namespace Nz
* \return true If replication is enabled
*/
bool FileLogger::IsStdReplicationEnabled()
bool FileLogger::IsStdReplicationEnabled() const
{
return m_stdReplicationEnabled;
}

View File

@@ -47,7 +47,7 @@ namespace Nz
* \return Always returns true
*/
bool StdLogger::IsStdReplicationEnabled()
bool StdLogger::IsStdReplicationEnabled() const
{
return true;
}