diff options
author | Roxie Linden <roxie@lindenlab.com> | 2024-02-01 21:57:05 -0800 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-02-08 18:35:55 -0800 |
commit | 4bf9dc229174647b34d8e1aa108e6985086b118b (patch) | |
tree | cc75d9466a478f1c44766e124dd702b96698a3cd | |
parent | 0cd8ad6ebb6e76bfc04cf6c423b0dc586161c6f7 (diff) |
fix mac build break
-rw-r--r-- | indra/newview/llvoicevivox.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llvoicevivox.h b/indra/newview/llvoicevivox.h index 929ccce32b..6e6ffdb1e4 100644 --- a/indra/newview/llvoicevivox.h +++ b/indra/newview/llvoicevivox.h @@ -134,9 +134,9 @@ public: // Note that gestures should only fire if this returns true. virtual bool inProximalChannel(); - virtual void setNonSpatialChannel(const std::string &uri, + void setNonSpatialChannel(const std::string &uri, const std::string &credentials, - bool hangup_on_last_leave); + bool hangup_on_last_leave) override; virtual bool setSpatialChannel(const std::string &uri, const std::string &credentials); |