diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-10-17 17:20:51 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-10-17 17:20:51 +0200 |
commit | 6793bdf3fd30096e018bb479ae8b52854209b108 (patch) | |
tree | 76b9d9549dafff7b055f15f94c993634b4346ba4 /src/voip | |
parent | Use allow list for URI schemes (diff) | |
download | nheko-6793bdf3fd30096e018bb479ae8b52854209b108.tar.xz |
lint
Diffstat (limited to 'src/voip')
-rw-r--r-- | src/voip/WebRTCSession.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/voip/WebRTCSession.cpp b/src/voip/WebRTCSession.cpp index 801a365c..8e0a9f79 100644 --- a/src/voip/WebRTCSession.cpp +++ b/src/voip/WebRTCSession.cpp @@ -1114,7 +1114,11 @@ WebRTCSession::haveLocalPiP() const return false; } -bool WebRTCSession::createOffer(webrtc::CallType, uint32_t) { return false; } +bool +WebRTCSession::createOffer(webrtc::CallType, uint32_t) +{ + return false; +} bool WebRTCSession::acceptOffer(const std::string &) |