Skip to content

Commit 1dc2ca7

Browse files
committed
Remove static analyzer suppression now that llvm fix is merged
https://bugs.webkit.org/show_bug.cgi?id=292007 Reviewed by Ryosuke Niwa and Mike Wyrzykowski. llvm/llvm-project#119336 was merged four months ago. Presumably this is all good now. * Source/WebKit/GPUProcess/graphics/RemoteGraphicsContextGL.h: (WebKit::RemoteGraphicsContextGL::send const): * Source/WebKit/GPUProcess/graphics/WebGPU/RemoteGPU.h: Canonical link: https://commits.webkit.org/294073@main
1 parent 37282ba commit 1dc2ca7

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

Source/WebKit/GPUProcess/graphics/RemoteGraphicsContextGL.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,7 @@ class RemoteGraphicsContextGL : private WebCore::GraphicsContextGL::Client, publ
108108
template<typename T>
109109
IPC::Error send(T&& message) const
110110
{
111-
// FIXME: Remove this suppression once https://github.com/llvm/llvm-project/pull/119336 is merged.
112-
IGNORE_CLANG_STATIC_ANALYZER_WARNINGS_BEGIN("alpha.webkit.UncountedCallArgsChecker")
113111
return Ref { *m_streamConnection }->send(std::forward<T>(message), m_graphicsContextGLIdentifier);
114-
IGNORE_CLANG_STATIC_ANALYZER_WARNINGS_END
115112
}
116113

117114
// GraphicsContextGL::Client overrides.

Source/WebKit/GPUProcess/graphics/WebGPU/RemoteGPU.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,7 @@ class RemoteGPU final : public IPC::StreamMessageReceiver, public CanMakeWeakPtr
113113
template<typename T>
114114
IPC::Error send(T&& message) const
115115
{
116-
// FIXME: Remove this suppression once https://github.com/llvm/llvm-project/pull/119336 is merged.
117-
IGNORE_CLANG_STATIC_ANALYZER_WARNINGS_BEGIN("alpha.webkit.UncountedCallArgsChecker")
118116
return Ref { *m_streamConnection }->send(std::forward<T>(message), m_identifier);
119-
IGNORE_CLANG_STATIC_ANALYZER_WARNINGS_END
120117
}
121118

122119
void didReceiveStreamMessage(IPC::StreamServerConnection&, IPC::Decoder&) final;

0 commit comments

Comments
 (0)