From 7dd8c1fc371b8940d4c19efdfb4ddf0ed83471e1 Mon Sep 17 00:00:00 2001 From: AndreyL ProductEngine <alihatskiy@productengine.com> Date: Tue, 15 Nov 2016 01:39:16 +0200 Subject: [PATCH] Buildfix: proper constructor declaration for LLHUDRenderNotifier --- indra/newview/llavatarrendernotifier.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indra/newview/llavatarrendernotifier.h b/indra/newview/llavatarrendernotifier.h index de65bd2e139..ec17b3d9e62 100644 --- a/indra/newview/llavatarrendernotifier.h +++ b/indra/newview/llavatarrendernotifier.h @@ -114,10 +114,10 @@ class LLAvatarRenderNotifier : public LLSingleton<LLAvatarRenderNotifier> // Class to notify user about heavy set of HUD class LLHUDRenderNotifier : public LLSingleton<LLHUDRenderNotifier> { -public: - LLHUDRenderNotifier(); + LLSINGLETON(LLHUDRenderNotifier); ~LLHUDRenderNotifier(); +public: void updateNotificationHUD(hud_complexity_list_t complexity); bool isNotificationVisible(); -- GitLab