Fix VC5 build bustage with (T*) cast.

This commit is contained in:
kin%netscape.com 1999-10-01 16:23:17 +00:00
parent d46bd1d3ca
commit 6f4be6ee0d

View File

@ -137,7 +137,7 @@ public:
T& operator*() const {
NS_ASSERTION(mProxy, "weak reference used without being set");
return (T&) *mProxy->Reference();
return (T&) *(T*)mProxy->Reference();
}
T* operator->() const {