diff options
Diffstat (limited to 'indra/newview/lleventpoll.h')
-rwxr-xr-x | indra/newview/lleventpoll.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/indra/newview/lleventpoll.h b/indra/newview/lleventpoll.h index 4b9944724d..0be48be6b4 100755 --- a/indra/newview/lleventpoll.h +++ b/indra/newview/lleventpoll.h @@ -37,10 +37,13 @@ namespace boost class LLHost; -namespace +namespace LLEventPolling +{ +namespace Details { class LLEventPollImpl; } +} class LLEventPoll @@ -56,7 +59,8 @@ public: private: #if 1 - boost::unique_ptr<LLEventPollImpl> mImpl; + boost::unique_ptr<LLEventPolling::Details::LLEventPollImpl> mImpl; + #else LLHTTPClient::ResponderPtr mImpl; #endif |