mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-05 16:22:53 +00:00
Fix VC5 build bustage with (T*) cast.
This commit is contained in:
parent
d46bd1d3ca
commit
6f4be6ee0d
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user