added Loki-Namespace-Qualification to definition of ClassLevelLockable's static member.

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@128 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
humesikkins 2003-03-25 23:52:04 +00:00
parent 39e2a0557e
commit 0ec9a1db40

View file

@ -8,7 +8,7 @@
// affects only default template arguments
////////////////////////////////////////////////////////////////////////////////
// Last update: Feb 20, 2003
// Last update: Mar 26, 2003
// note: In this VC 6 port all template policies become non-templates with
// either member-template functions or a nested template struct named In
@ -210,8 +210,8 @@ namespace Loki
};
template <class Host>
typename ClassLevelLockable::template In<Host>::Initializer
ClassLevelLockable::template In<Host>::initializer_;
typename Loki::ClassLevelLockable::template In<Host>::Initializer
Loki::ClassLevelLockable::template In<Host>::initializer_;
#endif
}
@ -221,6 +221,8 @@ namespace Loki
// June 20, 2001: ported by Nick Thurn to gcc 2.95.3. Kudos, Nick!!!
// Oct 06, 2002: ported by Benjamin Kaufmann to MSVC 6.0
// Feb 20, 2003: corrected constructor parameter in ObjectLevelLockable::Lock
// Mar 26, 2003: added Loki-Namespace-Qualification to definition of
// ClassLevelLockable's static member.
////////////////////////////////////////////////////////////////////////////////
#endif