diff options
author | Roxie Linden <roxie@lindenlab.com> | 2024-02-01 21:57:05 -0800 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-02-22 23:11:37 -0800 |
commit | 2817cc55a92f84aef81fb9cc378046b3dec7b4be (patch) | |
tree | d639feaf600ae5790134ccfd241c9026973e8502 | |
parent | ead4feb6f56a2d62cdb3dcccbca683f340347f92 (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); |