OGRE_RW_MUTEX missing ; with TBB

Discussion area about developing or extending OGRE, adding plugins for it or building applications on it. No newbie questions please, use the Help forum for that.
Post Reply
oiram
Halfling
Posts: 87
Joined: Sun Dec 13, 2009 5:06 am
x 6

OGRE_RW_MUTEX missing ; with TBB

Post by oiram »

Issue with 1.9 code from mercurial.

@OgreThreadDefinesTBB.h

Code: Select all

#define OGRE_RW_MUTEX(name) mutable tbb::queuing_rw_mutex name
It's missing ";" that causes compile error.
@OgreWorkQueue.h

Code: Select all

		class _OgreExport RequestHandlerHolder : public UtilityAlloc
		{
		protected:
			OGRE_RW_MUTEX(mRWMutex)
			RequestHandler* mHandler;
		public:
FlorianGeorge
Halfling
Posts: 86
Joined: Tue Sep 01, 2009 7:15 pm
Location: Cologne, Germany
x 4

Re: OGRE_RW_MUTEX missing ; with TBB

Post by FlorianGeorge »

Mantis Ticket #1: http://www.ogre3d.org/mantis/view.php?id=558 (closed)
Can't find the ticket here : https://ogre3d.atlassian.net/browse/OGRE

Mantis Ticket #2: http://www.ogre3d.org/mantis/view.php?id=586 (open)
Same issue in JIRA: https://ogre3d.atlassian.net/browse/OGRE-93 (open)
According to Transporter's comment in Mantis on 2012-11-08, it can be closed too.
Post Reply