| 113 | |
| 114 | template<class T, class AllocType> |
| 115 | T Queue<T, AllocType>::back() |
| 116 | { |
| 117 | PX_ASSERT(mNum>0); |
| 118 | |
| 119 | PxU32 headAccess = (mHead-1) % (mMaxEntries); |
| 120 | return mJobQueue[headAccess]; |
| 121 | } |
| 122 | |
| 123 | template<class T, class AllocType> |
| 124 | bool Queue<T, AllocType>::pushBack(const T& element) |
no outgoing calls