Minor changes to preprocessor statements.
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@1086 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
parent
6cb58ee8cc
commit
1137319d54
1 changed files with 4 additions and 4 deletions
|
@ -52,7 +52,7 @@
|
|||
|
||||
#include <cassert>
|
||||
|
||||
#if defined(LOKI_CLASS_LEVEL_THREADING) || defined(LOKI_OBJECT_LEVEL_THREADING)
|
||||
#if defined( LOKI_CLASS_LEVEL_THREADING ) || defined( LOKI_OBJECT_LEVEL_THREADING )
|
||||
|
||||
#define LOKI_DEFAULT_THREADING_NO_OBJ_LEVEL ::Loki::ClassLevelLockable
|
||||
|
||||
|
@ -77,11 +77,11 @@
|
|||
|
||||
#endif
|
||||
|
||||
#ifndef LOKI_DEFAULT_MUTEX
|
||||
#define LOKI_DEFAULT_MUTEX ::Loki::Mutex
|
||||
#if !defined( LOKI_DEFAULT_MUTEX )
|
||||
#define LOKI_DEFAULT_MUTEX ::Loki::Mutex
|
||||
#endif
|
||||
|
||||
#ifdef LOKI_WINDOWS_H
|
||||
#if defined( LOKI_WINDOWS_H )
|
||||
|
||||
#define LOKI_THREADS_MUTEX(x) CRITICAL_SECTION (x);
|
||||
#define LOKI_THREADS_MUTEX_INIT(x) ::InitializeCriticalSection (x)
|
||||
|
|
Loading…
Reference in a new issue