mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
Fixed issue with gcc
This commit is contained in:
parent
dc1c1c0225
commit
f46a265432
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ class MutationEvent : public Event<stringT, string_adaptorT>
|
|||
MutationEvent(const MutationEvent& rhs) : Event<stringT, string_adaptorT>(rhs) { }
|
||||
explicit MutationEvent(const Event<stringT, string_adaptorT>& rhs) : Event<stringT, string_adaptorT>(rhs)
|
||||
{
|
||||
if(dynamic_cast<MutationEvent_impl<stringT, string_adaptorT>*>(rhs.Event::proxy_t::operator*()) == 0)
|
||||
if(dynamic_cast<MutationEvent_impl<stringT, string_adaptorT>*>(rhs.Event<stringT, string_adaptorT>::proxy_t::operator*()) == 0)
|
||||
throw DOMBadCast("Element");
|
||||
} // Element
|
||||
virtual ~MutationEvent() { }
|
||||
|
|
Loading…
Reference in a new issue