Removed volatile keyword from 2 data members.

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@504 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
rich_sposato 2006-01-21 01:05:44 +00:00
parent ccad1a5623
commit 48ec640065

View file

@ -219,7 +219,7 @@ namespace Loki
template < class Host, class MutexPolicy = Loki::Mutex >
class ObjectLevelLockable
{
mutable volatile MutexPolicy mtx_;
mutable MutexPolicy mtx_;
public:
ObjectLevelLockable() : mtx_() {}
@ -289,7 +289,7 @@ namespace Loki
struct Initializer
{
bool init_;
volatile MutexPolicy mtx_;
MutexPolicy mtx_;
Initializer() : init_(false), mtx()
{
@ -380,6 +380,9 @@ namespace Loki
#endif
// $Log$
// Revision 1.22 2006/01/21 01:05:44 rich_sposato
// Removed volatile keyword from 2 data members.
//
// Revision 1.21 2006/01/21 01:02:12 rich_sposato
// Added Mutex class to Loki. Made it the default policy class for locking.
//