From e7a6514b2dc875a5af175ceb37010af9cbf1e20b Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Tue, 10 Aug 2021 04:15:19 -0400 Subject: [PATCH] Fix override warning --- indra/newview/llappviewerlinux.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/indra/newview/llappviewerlinux.h b/indra/newview/llappviewerlinux.h index d540151bde4..86dc8d0a9f0 100644 --- a/indra/newview/llappviewerlinux.h +++ b/indra/newview/llappviewerlinux.h @@ -53,9 +53,8 @@ class LLAppViewerLinux final : public LLAppViewer // // Main application logic // - virtual bool init(); // Override to do application initialization - std::string generateSerialNumber(); - bool setupSLURLHandler(); + bool init() override; // Override to do application initialization + std::string generateSerialNumber() override; void setCrashUserMetadata(const LLUUID& user_id, const std::string& avatar_name) override; -- GitLab