diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-01-09 14:46:35 -0500 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-01-09 14:46:35 -0500 |
commit | 4aae21e1e4d699865964dd73461a4a6a257f6994 (patch) | |
tree | 31f7c7523376cb9a5b765e7b12d5d368bc8c0816 /src/yuzu/util | |
parent | 7bad1974a6bc2fba9f47824d4da23e888f6ff4a7 (diff) |
general: Resolve C4062 warnings on MSVC
Diffstat (limited to 'src/yuzu/util')
-rw-r--r-- | src/yuzu/util/url_request_interceptor.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu/util/url_request_interceptor.cpp b/src/yuzu/util/url_request_interceptor.cpp index 2d491d8c0..b637e771e 100644 --- a/src/yuzu/util/url_request_interceptor.cpp +++ b/src/yuzu/util/url_request_interceptor.cpp @@ -22,6 +22,8 @@ void UrlRequestInterceptor::interceptRequest(QWebEngineUrlRequestInfo& info) { case QWebEngineUrlRequestInfo::ResourceTypeXhr: emit FrameChanged(); break; + default: + break; } } |