File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -369,7 +369,7 @@ class DPP_EXPORT discord_voice_client : public websocket_client
369369 * @param severity The log level from dpp::loglevel
370370 * @param msg The log message to output
371371 */
372- virtual void log (dpp::loglevel severity, const std::string &msg);
372+ virtual void log (dpp::loglevel severity, const std::string &msg) const ;
373373
374374 /* * Fires every second from the underlying socket I/O loop, used for sending heartbeats */
375375 virtual void one_second_timer ();
Original file line number Diff line number Diff line change @@ -630,7 +630,7 @@ void discord_voice_client::Error(uint32_t errorcode)
630630 }
631631}
632632
633- void discord_voice_client::log (dpp::loglevel severity, const std::string &msg)
633+ void discord_voice_client::log (dpp::loglevel severity, const std::string &msg) const
634634{
635635 creator->log (severity, msg);
636636}
You can’t perform that action at this time.
0 commit comments