Add missing const keyword
This commit is contained in:
parent
e8b045ce14
commit
e68d06b31b
2 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ FTraceLogger::FTraceLogger(QObject *parent)
|
|||
}
|
||||
}
|
||||
|
||||
bool FTraceLogger::isEnabled()
|
||||
bool FTraceLogger::isEnabled() const
|
||||
{
|
||||
return m_file.isOpen();
|
||||
}
|
||||
|
|
2
ftrace.h
2
ftrace.h
|
@ -37,7 +37,7 @@ public:
|
|||
/**
|
||||
* Enabled through DBus and logging has started
|
||||
*/
|
||||
bool isEnabled();
|
||||
bool isEnabled() const;
|
||||
|
||||
/**
|
||||
* Main log function
|
||||
|
|
Loading…
Reference in a new issue