IsParallelAccessLocked() is defined as a debug-only conditional in the header.

Fixes the build.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35827 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matt Madia 2010-03-12 17:35:11 +00:00
parent cfbd755443
commit ff1b6201b3
1 changed files with 2 additions and 1 deletions

View File

@ -18,6 +18,7 @@ BitmapDrawingEngine::~BitmapDrawingEngine()
}
#if DEBUG
bool
BitmapDrawingEngine::IsParallelAccessLocked() const
{
@ -25,7 +26,7 @@ BitmapDrawingEngine::IsParallelAccessLocked() const
// attached to, so we never need to be locked.
return true;
}
#endif
bool
BitmapDrawingEngine::IsExclusiveAccessLocked() const