Fixed what I believe is a bug in SUPERSUBCLASS_STRICT

Added *'s

#define SUPERSUBCLASS_STRICT(T, U) \
    (SUPERSUBCLASS(T, U) && \
    !::Loki::Conversion<const volatile T*, const volatile U*>::sameType)


git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@39 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
magmaikh 2002-08-15 02:59:47 +00:00
parent a70e07ccb3
commit 5ca0b883b1

View file

@ -162,7 +162,7 @@ namespace Loki
#define SUPERSUBCLASS_STRICT(T, U) \
(SUPERSUBCLASS(T, U) && \
!::Loki::Conversion<const volatile T, const volatile U>::sameType)
!::Loki::Conversion<const volatile T*, const volatile U*>::sameType)
////////////////////////////////////////////////////////////////////////////////
// Change log: