Add missing const in ThreadImpl::getAffinityImpl for WINCE

This commit is contained in:
Pascal Bach 2015-03-11 11:31:10 +01:00
parent 1b8a7c1664
commit 745d5fb025

View File

@ -152,7 +152,7 @@ inline void ThreadImpl::setAffinityImpl(unsigned cpu)
throw Poco::NotImplementedException("Thread affinity not supported on this system");
}
inline unsigned ThreadImpl::getAffinityImpl()
inline unsigned ThreadImpl::getAffinityImpl() const
{
throw Poco::NotImplementedException("Thread affinity not supported on this system");
}