Build fix for 2.3.x

This commit is contained in:
Gunnar Beutner 2015-03-13 12:00:30 +01:00
parent 1756bc69a3
commit f70cebca0c
2 changed files with 2 additions and 2 deletions

View File

@ -166,7 +166,7 @@ void WorkQueue::ReportExceptions(const String& facility) const
<< exceptions.size() << " error" << (exceptions.size() != 1 ? "s" : "");
}
size_t WorkQueue::GetLength(void)
size_t WorkQueue::GetLength(void) const
{
boost::mutex::scoped_lock lock(m_Mutex);

View File

@ -52,7 +52,7 @@ public:
bool IsWorkerThread(void) const;
size_t GetLength(void);
size_t GetLength(void) const;
void SetExceptionCallback(const ExceptionCallback& callback);